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

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

Issue 2929143002: Handle instance fields in compile_from_dill_test (Closed)
Patch Set: Cleanup 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
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 17 matching lines...) Expand all
28 import '../equivalence/check_helpers.dart'; 28 import '../equivalence/check_helpers.dart';
29 import '../serialization/helper.dart'; 29 import '../serialization/helper.dart';
30 import 'test_helpers.dart'; 30 import 'test_helpers.dart';
31 31
32 import 'compiler_helper.dart'; 32 import 'compiler_helper.dart';
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 class Class {} 38 class Class {
39 int field;
40 Class();
41 }
39 main() { 42 main() {
40 foo(); 43 foo();
41 bar(true); 44 bar(true);
42 []; 45 [];
43 {}; 46 {};
44 new Object(); 47 new Object();
45 new Class(); 48 new Class();
46 var x = null; 49 var x = null;
47 return x; 50 return x;
48 } 51 }
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 } 171 }
169 Map<String, BufferedOutputSink> map2 = collector2.outputMap[outputType]; 172 Map<String, BufferedOutputSink> map2 = collector2.outputMap[outputType];
170 checkSets(map1.keys, map2.keys, 'output', equality); 173 checkSets(map1.keys, map2.keys, 'output', equality);
171 map1.forEach((String name, BufferedOutputSink output1) { 174 map1.forEach((String name, BufferedOutputSink output1) {
172 BufferedOutputSink output2 = map2[name]; 175 BufferedOutputSink output2 = map2[name];
173 Expect.stringEquals(output1.text, output2.text); 176 Expect.stringEquals(output1.text, output2.text);
174 }); 177 });
175 }); 178 });
176 return ResultKind.success; 179 return ResultKind.success;
177 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698