OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #import("compiler_helper.dart"); | 5 import 'compiler_helper.dart'; |
6 | 6 |
7 const String TEST_ONE = r""" | 7 const String TEST_ONE = r""" |
8 foo(String a) { | 8 foo(String a) { |
9 // index into the parameter and move into a loop to make sure we'll get a | 9 // index into the parameter and move into a loop to make sure we'll get a |
10 // type guard. | 10 // type guard. |
11 for (int i = 0; i < 1; i++) { | 11 for (int i = 0; i < 1; i++) { |
12 print(a[0]); | 12 print(a[0]); |
13 } | 13 } |
14 return a.length; | 14 return a.length; |
15 } | 15 } |
(...skipping 23 matching lines...) Expand all Loading... |
39 | 39 |
40 generated = compile(TEST_TWO, entry: 'foo'); | 40 generated = compile(TEST_TWO, entry: 'foo'); |
41 Expect.isTrue(generated.contains("return 3;")); | 41 Expect.isTrue(generated.contains("return 3;")); |
42 | 42 |
43 generated = compile(TEST_THREE, entry: 'foo'); | 43 generated = compile(TEST_THREE, entry: 'foo'); |
44 Expect.isTrue(generated.contains("return 3;")); | 44 Expect.isTrue(generated.contains("return 3;")); |
45 | 45 |
46 generated = compile(TEST_FOUR, entry: 'foo'); | 46 generated = compile(TEST_FOUR, entry: 'foo'); |
47 Expect.isTrue(generated.contains("push(2);")); | 47 Expect.isTrue(generated.contains("push(2);")); |
48 } | 48 } |
OLD | NEW |