| 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 |
| 11 const MEMORY_SOURCE_FILES = const { | 11 const MEMORY_SOURCE_FILES = const { |
| 12 'main.dart': ''' | 12 'main.dart': ''' |
| 13 | 13 |
| 14 var a = [42]; | 14 var a = [42]; |
| 15 | 15 |
| 16 main() { | 16 main() { |
| 17 var value = a[0]; | 17 var value = a[0]; |
| 18 if (value < 42) { | 18 if (value < 42) { |
| 19 return new List(42)[value]; | 19 return new List(42)[value]; |
| 20 } | 20 } |
| 21 } | 21 } |
| 22 ''', | 22 ''', |
| 23 }; | 23 }; |
| 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.mainApp.findExported('main'); | 29 var element = compiler.mainFunction; |
| 30 var code = compiler.backend.assembleCode(element); | 30 var code = compiler.backend.assembleCode(element); |
| 31 Expect.isFalse(code.contains('ioore')); | 31 Expect.isFalse(code.contains('ioore')); |
| 32 }); | 32 }); |
| 33 } | 33 } |
| 34 | 34 |
| OLD | NEW |