| 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 final String TEST_ONE = @""" | 7 final String TEST_ONE = @""" |
| 8 foo(String a) { | 8 foo(String a) { |
| 9 // index into the parameter to make sure we'll get a type guard. | 9 // index into the parameter to make sure we'll get a type guard. |
| 10 print(a[0]); | 10 print(a[0]); |
| 11 return a.length; | 11 return a.length; |
| 12 } | 12 } |
| 13 """; | 13 """; |
| 14 | 14 |
| 15 final String TEST_TWO = @""" | 15 final String TEST_TWO = @""" |
| 16 foo() { | 16 foo() { |
| 17 return "foo".length; | 17 return "foo".length; |
| 18 } | 18 } |
| 19 """; | 19 """; |
| 20 | 20 |
| 21 final String TEST_THREE = @""" | 21 final String TEST_THREE = @""" |
| 22 foo() { | 22 foo() { |
| 23 return @"foo".length; | 23 return @"foo".length; |
| 24 } | 24 } |
| 25 """; | 25 """; |
| 26 | 26 |
| 27 final String TEST_FOUR = @""" |
| 28 foo() { |
| 29 return new List().add(2); |
| 30 } |
| 31 """; |
| 32 |
| 27 main() { | 33 main() { |
| 28 String generated = compile(TEST_ONE, 'foo'); | 34 String generated = compile(TEST_ONE, 'foo'); |
| 29 Expect.isTrue(generated.contains("return a.length;")); | 35 Expect.isTrue(generated.contains("return a.length;")); |
| 30 | 36 |
| 31 generated = compile(TEST_TWO, 'foo'); | 37 generated = compile(TEST_TWO, 'foo'); |
| 32 Expect.isTrue(generated.contains("return 3;")); | 38 Expect.isTrue(generated.contains("return 3;")); |
| 33 | 39 |
| 34 generated = compile(TEST_THREE, 'foo'); | 40 generated = compile(TEST_THREE, 'foo'); |
| 35 Expect.isTrue(generated.contains("return 3;")); | 41 Expect.isTrue(generated.contains("return 3;")); |
| 42 |
| 43 generated = compile(TEST_FOUR, 'foo'); |
| 44 Expect.isTrue(generated.contains("push(2);")); |
| 36 } | 45 } |
| OLD | NEW |