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

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

Issue 87783003: Add UInt32 and UInt31 types to better infer bit operations. (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
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 // We used to always nullify the element type of a list we are tracing in 5 // We used to always nullify the element type of a list we are tracing in
6 // the presence of a fixed length list constructor call. 6 // the presence of a fixed length list constructor call.
7 7
8 import 'package:expect/expect.dart'; 8 import 'package:expect/expect.dart';
9 import "package:async_helper/async_helper.dart"; 9 import "package:async_helper/async_helper.dart";
10 import 10 import
(...skipping 17 matching lines...) Expand all
28 var compiler = compilerFor(TEST, uri); 28 var compiler = compilerFor(TEST, uri);
29 asyncTest(() => compiler.runCompiler(uri).then((_) { 29 asyncTest(() => compiler.runCompiler(uri).then((_) {
30 var typesInferrer = compiler.typesTask.typesInferrer; 30 var typesInferrer = compiler.typesTask.typesInferrer;
31 31
32 checkType(String name, type) { 32 checkType(String name, type) {
33 var element = findElement(compiler, name); 33 var element = findElement(compiler, name);
34 ContainerTypeMask mask = typesInferrer.getTypeOfElement(element); 34 ContainerTypeMask mask = typesInferrer.getTypeOfElement(element);
35 Expect.equals(type, mask.elementType.simplify(compiler), name); 35 Expect.equals(type, mask.elementType.simplify(compiler), name);
36 } 36 }
37 37
38 checkType('myList', compiler.typesTask.intType); 38 checkType('myList', compiler.typesTask.uint31Type);
39 })); 39 }));
40 } 40 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/field_type_simple_inferer_test.dart ('k') | tests/compiler/dart2js/list_tracer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698