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

Side by Side Diff: tests/compiler/dart2js/kernel/compile_from_dill_test.dart

Issue 2927043002: Handle `new Object()` in compile_from_dill_test (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution_strategy.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 // Partial test that the closed world computed from [WorldImpact]s derived from 5 // Partial test that the closed world computed from [WorldImpact]s derived from
6 // kernel is equivalent to the original computed from resolution. 6 // kernel is equivalent to the original computed from resolution.
7 library dart2js.kernel.compile_from_dill_test; 7 library dart2js.kernel.compile_from_dill_test;
8 8
9 import 'dart:async'; 9 import 'dart:async';
10 import 'dart:io'; 10 import 'dart:io';
(...skipping 22 matching lines...) Expand all
33 33
34 const SOURCE = const { 34 const SOURCE = const {
35 'main.dart': ''' 35 'main.dart': '''
36 foo() => 1; 36 foo() => 1;
37 bar(a) => !a; 37 bar(a) => !a;
38 main() { 38 main() {
39 foo(); 39 foo();
40 bar(true); 40 bar(true);
41 []; 41 [];
42 {}; 42 {};
43 new Object();
43 var x = null; 44 var x = null;
44 return x; 45 return x;
45 } 46 }
46 ''' 47 '''
47 }; 48 };
48 49
49 main(List<String> args) { 50 main(List<String> args) {
50 asyncTest(() async { 51 asyncTest(() async {
51 await mainInternal(args); 52 await mainInternal(args);
52 }); 53 });
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 } 166 }
166 Map<String, BufferedOutputSink> map2 = collector2.outputMap[outputType]; 167 Map<String, BufferedOutputSink> map2 = collector2.outputMap[outputType];
167 checkSets(map1.keys, map2.keys, 'output', equality); 168 checkSets(map1.keys, map2.keys, 'output', equality);
168 map1.forEach((String name, BufferedOutputSink output1) { 169 map1.forEach((String name, BufferedOutputSink output1) {
169 BufferedOutputSink output2 = map2[name]; 170 BufferedOutputSink output2 = map2[name];
170 Expect.stringEquals(output1.text, output2.text); 171 Expect.stringEquals(output1.text, output2.text);
171 }); 172 });
172 }); 173 });
173 return ResultKind.success; 174 return ResultKind.success;
174 } 175 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution_strategy.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698