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

Side by Side Diff: tests/compiler/dart2js/mirror_final_field_inferrer2_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 // Test that final fields in @MirrorsUsed are still inferred. 5 // Test that final fields in @MirrorsUsed are still inferred.
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' show compilerFor; 9 import 'memory_compiler.dart' show compilerFor;
10 import 'compiler_helper.dart' show findElement; 10 import 'compiler_helper.dart' show findElement;
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 """ 22 """
23 }; 23 };
24 24
25 void main() { 25 void main() {
26 var compiler = compilerFor(MEMORY_SOURCE_FILES); 26 var compiler = compilerFor(MEMORY_SOURCE_FILES);
27 asyncTest(() => compiler.runCompiler(Uri.parse('memory:main.dart')).then((_) { 27 asyncTest(() => compiler.runCompiler(Uri.parse('memory:main.dart')).then((_) {
28 var element = findElement(compiler, 'field'); 28 var element = findElement(compiler, 'field');
29 var typesTask = compiler.typesTask; 29 var typesTask = compiler.typesTask;
30 var typesInferrer = typesTask.typesInferrer; 30 var typesInferrer = typesTask.typesInferrer;
31 Expect.equals(typesTask.intType, 31 Expect.equals(typesTask.uint31Type,
32 typesInferrer.getTypeOfElement(element).simplify(compiler), 32 typesInferrer.getTypeOfElement(element).simplify(compiler),
33 'field'); 33 'field');
34 })); 34 }));
35 } 35 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/list_tracer_test.dart ('k') | tests/compiler/dart2js/mirror_final_field_inferrer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698