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

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

Issue 2577423002: Further reduce use of Compiler.closedWorld. (Closed)
Patch Set: Created 4 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
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 // Regression test for dart2js that used to have a bogus 5 // Regression test for dart2js that used to have a bogus
6 // implementation of var.== and 6 // implementation of var.== and
7 // var.hashCode. 7 // var.hashCode.
8 8
9 import 'package:expect/expect.dart'; 9 import 'package:expect/expect.dart';
10 import "package:async_helper/async_helper.dart"; 10 import "package:async_helper/async_helper.dart";
(...skipping 13 matching lines...) Expand all
24 print(a); print(b); print(c); print(d); 24 print(a); print(b); print(c); print(d);
25 } 25 }
26 ''', 26 ''',
27 }; 27 };
28 28
29 main() { 29 main() {
30 asyncTest(() async { 30 asyncTest(() async {
31 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); 31 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES);
32 var compiler = result.compiler; 32 var compiler = result.compiler;
33 var typesInferrer = compiler.globalInference.typesInferrerInternal; 33 var typesInferrer = compiler.globalInference.typesInferrerInternal;
34 var closedWorld = typesInferrer.closedWorld;
34 35
35 var element = compiler.mainApp.find('a'); 36 var element = compiler.mainApp.find('a');
36 var mask1 = typesInferrer.getReturnTypeOfElement(element); 37 var mask1 = typesInferrer.getReturnTypeOfElement(element);
37 38
38 element = compiler.mainApp.find('b'); 39 element = compiler.mainApp.find('b');
39 var mask2 = typesInferrer.getReturnTypeOfElement(element); 40 var mask2 = typesInferrer.getReturnTypeOfElement(element);
40 41
41 element = compiler.mainApp.find('c'); 42 element = compiler.mainApp.find('c');
42 var mask3 = typesInferrer.getReturnTypeOfElement(element); 43 var mask3 = typesInferrer.getReturnTypeOfElement(element);
43 44
44 element = compiler.mainApp.find('d'); 45 element = compiler.mainApp.find('d');
45 var mask4 = typesInferrer.getReturnTypeOfElement(element); 46 var mask4 = typesInferrer.getReturnTypeOfElement(element);
46 47
47 Expect.notEquals(mask1.union(mask2, compiler.closedWorld), 48 Expect.notEquals(
48 mask3.union(mask4, compiler.closedWorld)); 49 mask1.union(mask2, closedWorld), mask3.union(mask4, closedWorld));
49 }); 50 });
50 } 51 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/concrete_type_inference_test.dart ('k') | tests/compiler/dart2js/dictionary_types_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698