| 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 "package:expect/expect.dart"; | |
| 6 import 'compiler_helper.dart'; | 5 import 'compiler_helper.dart'; |
| 7 | 6 |
| 8 const String TEST_ONE = r""" | 7 const String TEST_ONE = r""" |
| 9 foo(String a) { | 8 foo(String a) { |
| 10 // Make sure the string class is registered. | 9 // Make sure the string class is registered. |
| 11 var c = 'foo'; | 10 var c = 'foo'; |
| 12 // index into the parameter and move into a loop to make sure we'll get a | 11 // index into the parameter and move into a loop to make sure we'll get a |
| 13 // type guard. | 12 // type guard. |
| 14 for (int i = 0; i < 1; i++) { | 13 for (int i = 0; i < 1; i++) { |
| 15 print(a[0] + c); | 14 print(a[0] + c); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 42 | 41 |
| 43 generated = compile(TEST_TWO, entry: 'foo'); | 42 generated = compile(TEST_TWO, entry: 'foo'); |
| 44 Expect.isTrue(generated.contains("return 3;")); | 43 Expect.isTrue(generated.contains("return 3;")); |
| 45 | 44 |
| 46 generated = compile(TEST_THREE, entry: 'foo'); | 45 generated = compile(TEST_THREE, entry: 'foo'); |
| 47 Expect.isTrue(generated.contains("return 3;")); | 46 Expect.isTrue(generated.contains("return 3;")); |
| 48 | 47 |
| 49 generated = compile(TEST_FOUR, entry: 'foo'); | 48 generated = compile(TEST_FOUR, entry: 'foo'); |
| 50 Expect.isTrue(generated.contains("push(2);")); | 49 Expect.isTrue(generated.contains("push(2);")); |
| 51 } | 50 } |
| OLD | NEW |