OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that global analysis in dart2js propagates positive integers. | 5 // Test that global analysis in dart2js propagates positive integers. |
6 | 6 |
7 import 'package:expect/expect.dart'; | 7 import 'package:expect/expect.dart'; |
8 import "package:async_helper/async_helper.dart"; | 8 import "package:async_helper/async_helper.dart"; |
9 import 'memory_compiler.dart'; | 9 import 'memory_compiler.dart'; |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 main() { | 25 main() { |
26 asyncTest(() async { | 26 asyncTest(() async { |
27 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); | 27 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); |
28 var compiler = result.compiler; | 28 var compiler = result.compiler; |
29 var element = compiler.mainFunction; | 29 var element = compiler.mainFunction; |
30 var code = compiler.backend.getGeneratedCode(element); | 30 var code = compiler.backend.getGeneratedCode(element); |
31 Expect.isFalse(code.contains('ioore')); | 31 Expect.isFalse(code.contains('ioore')); |
32 }); | 32 }); |
33 } | 33 } |
34 | |
OLD | NEW |