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

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

Issue 2488353004: Remove Compiler access from ResolutionEnqueuer (Closed)
Patch Set: Updated cf. comments. Created 4 years, 1 month 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
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 runCompiler; 9 import 'memory_compiler.dart' show runCompiler;
10 import 'compiler_helper.dart' show findElement; 10 import 'compiler_helper.dart' show findElement;
(...skipping 10 matching lines...) Expand all
21 return field; 21 return field;
22 } 22 }
23 """ 23 """
24 }; 24 };
25 25
26 void main() { 26 void main() {
27 asyncTest(() async { 27 asyncTest(() async {
28 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); 28 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES);
29 var compiler = result.compiler; 29 var compiler = result.compiler;
30 var element = findElement(compiler, 'field'); 30 var element = findElement(compiler, 'field');
31 var commonMasks = compiler.commonMasks; 31 var commonMasks = compiler.closedWorld.commonMasks;
32 var typesInferrer = compiler.globalInference.typesInferrer; 32 var typesInferrer = compiler.globalInference.typesInferrerInternal;
33 Expect.equals(commonMasks.uint31Type, 33 Expect.equals(commonMasks.uint31Type,
34 simplify(typesInferrer.getTypeOfElement(element), compiler), 'field'); 34 simplify(typesInferrer.getTypeOfElement(element), compiler), 'field');
35 }); 35 });
36 } 36 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/mirror_final_field_inferrer2_test.dart ('k') | tests/compiler/dart2js/patch_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698