| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // Test that global analysis in dart2js propagates positive integers. |
| 6 |
| 7 import 'package:expect/expect.dart'; |
| 8 import "package:async_helper/async_helper.dart"; |
| 9 import 'memory_compiler.dart'; |
| 10 |
| 11 const MEMORY_SOURCE_FILES = const { |
| 12 'main.dart': ''' |
| 13 |
| 14 var a = [42]; |
| 15 |
| 16 main() { |
| 17 var value = a[0]; |
| 18 if (value < 42) { |
| 19 return new List(42)[value]; |
| 20 } |
| 21 } |
| 22 ''', |
| 23 }; |
| 24 |
| 25 main() { |
| 26 var compiler = compilerFor(MEMORY_SOURCE_FILES); |
| 27 asyncTest(() => compiler.run(Uri.parse('memory:main.dart')).then((_) { |
| 28 var element = compiler.mainApp.findExported('main'); |
| 29 var code = compiler.backend.assembleCode(element); |
| 30 Expect.isFalse(code.contains('ioore')); |
| 31 })); |
| 32 } |
| 33 |
| OLD | NEW |