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

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

Issue 165143004: Move TypeMask.simplify to a test helper. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 6 years, 10 months 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;
11 import 'type_mask_test_helper.dart';
11 12
12 const MEMORY_SOURCE_FILES = const <String, String> { 13 const MEMORY_SOURCE_FILES = const <String, String> {
13 'main.dart': """ 14 'main.dart': """
14 import 'dart:mirrors'; 15 import 'dart:mirrors';
15 16
16 const field = 42; 17 const field = 42;
17 18
18 main() { 19 main() {
19 var mirror = reflect(field); 20 var mirror = reflect(field);
20 mirror.invoke(null, null); 21 mirror.invoke(null, null);
21 } 22 }
22 """ 23 """
23 }; 24 };
24 25
25 void main() { 26 void main() {
26 var compiler = compilerFor(MEMORY_SOURCE_FILES); 27 var compiler = compilerFor(MEMORY_SOURCE_FILES);
27 asyncTest(() => compiler.runCompiler(Uri.parse('memory:main.dart')).then((_) { 28 asyncTest(() => compiler.runCompiler(Uri.parse('memory:main.dart')).then((_) {
28 var element = findElement(compiler, 'field'); 29 var element = findElement(compiler, 'field');
29 var typesTask = compiler.typesTask; 30 var typesTask = compiler.typesTask;
30 var typesInferrer = typesTask.typesInferrer; 31 var typesInferrer = typesTask.typesInferrer;
31 Expect.equals(typesTask.uint31Type, 32 Expect.equals(typesTask.uint31Type,
32 typesInferrer.getTypeOfElement(element).simplify(compiler), 33 simplify(typesInferrer.getTypeOfElement(element), compiler),
33 'field'); 34 'field');
34 })); 35 }));
35 } 36 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/map_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