bcbccaf2d9
Review URL: https://codereview.chromium.org//11788016 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@16702 260f80e4-7a28-3924-810f-c04153c831b5
63 lines
1.2 KiB
Dart
63 lines
1.2 KiB
Dart
// Copyright (c) 2012, 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.
|
|
|
|
import 'compiler_helper.dart';
|
|
|
|
const String TEST_ONE = r"""
|
|
foo(a) {
|
|
int x = 0;
|
|
for (int i = 0; i < 10; i++) {
|
|
x += i;
|
|
}
|
|
return x;
|
|
}
|
|
""";
|
|
|
|
const String TEST_TWO = r"""
|
|
foo(a) {
|
|
int x = 0;
|
|
int i = 0;
|
|
while (i < 10) {
|
|
x += i;
|
|
i++;
|
|
}
|
|
return x;
|
|
}
|
|
""";
|
|
|
|
const String TEST_THREE = r"""
|
|
foo(a) {
|
|
int x = 0;
|
|
for (int i = 0; i < 10; i++) {
|
|
if (i == 5) continue;
|
|
x += i;
|
|
}
|
|
return x;
|
|
}
|
|
""";
|
|
|
|
const String TEST_FOUR = r"""
|
|
foo(a) {
|
|
int x = 0;
|
|
int i = 0;
|
|
while (i < 10) {
|
|
i++;
|
|
if (i == 5) continue;
|
|
x += i;
|
|
}
|
|
return x;
|
|
}
|
|
""";
|
|
|
|
main() {
|
|
String generated = compile(TEST_ONE, entry: 'foo');
|
|
Expect.isTrue(generated.contains(r'for ('));
|
|
generated = compile(TEST_TWO, entry: 'foo');
|
|
Expect.isTrue(!generated.contains(r'break'));
|
|
generated = compile(TEST_THREE, entry: 'foo');
|
|
Expect.isTrue(generated.contains(r'continue'));
|
|
generated = compile(TEST_FOUR, entry: 'foo');
|
|
Expect.isTrue(generated.contains(r'continue'));
|
|
}
|