| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // Test constant folding on numbers. | 4 // Test constant folding on numbers. |
| 5 | 5 |
| 6 import 'dart:async'; | 6 import 'dart:async'; |
| 7 import 'package:expect/expect.dart'; | |
| 8 import 'package:async_helper/async_helper.dart'; | 7 import 'package:async_helper/async_helper.dart'; |
| 9 import 'compiler_helper.dart'; | 8 import 'compiler_helper.dart'; |
| 10 | 9 |
| 11 const String TEST_1 = """ | 10 const String TEST_1 = """ |
| 12 foo() { | 11 foo() { |
| 13 var a = 'Hello'; | 12 var a = 'Hello'; |
| 14 var b = 0; | 13 var b = 0; |
| 15 return a.codeUnitAt(b); | 14 return a.codeUnitAt(b); |
| 16 } | 15 } |
| 17 """; | 16 """; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 36 | 35 |
| 37 main() { | 36 main() { |
| 38 asyncTest(() => Future.wait([ | 37 asyncTest(() => Future.wait([ |
| 39 compileAndMatch(TEST_1, 'foo', new RegExp(r'return 72')), | 38 compileAndMatch(TEST_1, 'foo', new RegExp(r'return 72')), |
| 40 compileAndDoNotMatch(TEST_1, 'foo', new RegExp(r'Hello')), | 39 compileAndDoNotMatch(TEST_1, 'foo', new RegExp(r'Hello')), |
| 41 | 40 |
| 42 compileAndMatch(TEST_2, 'foo', new RegExp(r'Hello')), | 41 compileAndMatch(TEST_2, 'foo', new RegExp(r'Hello')), |
| 43 compileAndMatch(TEST_3, 'foo', new RegExp(r'Hello')), | 42 compileAndMatch(TEST_3, 'foo', new RegExp(r'Hello')), |
| 44 ])); | 43 ])); |
| 45 } | 44 } |
| OLD | NEW |