Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: tests/compiler/dart2js/value_range3_test.dart

Issue 91103003: Use the integer type to get rid of above 0 checks in bounds checks. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698