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

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

Issue 2955353002: Split inference type-info accessors into members, parameters and local functions (Closed)
Patch Set: Updated cf. comments Created 3 years, 5 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
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 13 matching lines...) Expand all
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 typesInferrer = compiler.globalInference.typesInferrerInternal; 31 var typesInferrer = compiler.globalInference.typesInferrerInternal;
32 var closedWorld = typesInferrer.closedWorld; 32 var closedWorld = typesInferrer.closedWorld;
33 var commonMasks = closedWorld.commonMasks; 33 var commonMasks = closedWorld.commonMasks;
34 Expect.equals( 34 Expect.equals(commonMasks.uint31Type,
35 commonMasks.uint31Type, 35 simplify(typesInferrer.getTypeOfMember(element), closedWorld), 'field');
36 simplify(typesInferrer.getTypeOfElement(element), closedWorld),
37 'field');
38 }); 36 });
39 } 37 }
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