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

Side by Side Diff: pkg/kernel/test/closures/suite.dart

Issue 2756593004: Start unraveling circularities between analyzer and front_end/kernel. (Closed)
Patch Set: Created 3 years, 9 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/kernel/test/baseline_tester.dart ('k') | pkg/kernel/test/frontend_bench.dart » ('j') | 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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 library test.kernel.closures.suite; 5 library test.kernel.closures.suite;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 8
9 import 'dart:io' show Directory, File, Platform; 9 import 'dart:io' show Directory, File, Platform;
10 10
11 import 'package:analyzer/src/generated/sdk.dart' show DartSdk; 11 import 'package:analyzer/src/generated/sdk.dart' show DartSdk;
12 12
13 import 'package:kernel/analyzer/loader.dart' 13 import 'package:analyzer/src/kernel/loader.dart'
14 show DartLoader, DartOptions, createDartSdk; 14 show DartLoader, DartOptions, createDartSdk;
15 15
16 import 'package:kernel/target/targets.dart' show Target, TargetFlags, getTarget; 16 import 'package:kernel/target/targets.dart' show Target, TargetFlags, getTarget;
17 17
18 import 'kernel_chain.dart' 18 import 'kernel_chain.dart'
19 show MatchExpectation, Print, ReadDill, SanityCheck, WriteDill; 19 show MatchExpectation, Print, ReadDill, SanityCheck, WriteDill;
20 20
21 import 'package:testing/testing.dart' 21 import 'package:testing/testing.dart'
22 show 22 show
23 Chain, 23 Chain,
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 .run(context.vm.toFilePath(), [generated.path, "Hello, World!"]); 185 .run(context.vm.toFilePath(), [generated.path, "Hello, World!"]);
186 print(process.output); 186 print(process.output);
187 } finally { 187 } finally {
188 generated.parent.delete(recursive: true); 188 generated.parent.delete(recursive: true);
189 } 189 }
190 return process.toResult(); 190 return process.toResult();
191 } 191 }
192 } 192 }
193 193
194 main(List<String> arguments) => runMe(arguments, createContext, "testing.json"); 194 main(List<String> arguments) => runMe(arguments, createContext, "testing.json");
OLDNEW
« no previous file with comments | « pkg/kernel/test/baseline_tester.dart ('k') | pkg/kernel/test/frontend_bench.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698