blob: 75f165abdeea90eb027211b9fd59d9765dd3195d [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* @assertion Execution of a do statement of the form do s while (e); proceeds
* as follows:
* The statement {s} is executed. Then, the expression e is evaluated to an
* object o. Then, o is then subjected to boolean conversion, producing an
* object r. If r is false, execution of the do statement is complete. If r is
* true, then the do statement is re-executed recursively.
* @description Checks that the number of iterations is correct for various
* valid expressions.
* @author vasya
*/
import '../../../Utils/expect.dart';
main() {
var count = 0;
do {
++count;
} while (false);
Expect.equals(1, count);
count = 0;
do {
++count;
if (count == 100)
break;
} while (true);
Expect.equals(100, count);
count = 0;
do {
++count;
} while (count < 5);
Expect.equals(5, count);
}