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

Side by Side Diff: pkg/kernel/test/baseline_tester.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/lib/analyzer/loader.dart ('k') | pkg/kernel/test/closures/suite.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 file. 3 // BSD-style license that can be found in the LICENSE file.
4 import 'dart:io'; 4 import 'dart:io';
5 5
6 import 'package:kernel/analyzer/loader.dart'; 6 import 'package:analyzer/src/kernel/loader.dart';
7 import 'package:kernel/application_root.dart'; 7 import 'package:kernel/application_root.dart';
8 import 'package:kernel/kernel.dart'; 8 import 'package:kernel/kernel.dart';
9 import 'package:kernel/target/targets.dart'; 9 import 'package:kernel/target/targets.dart';
10 import 'package:kernel/text/ast_to_text.dart'; 10 import 'package:kernel/text/ast_to_text.dart';
11 import 'package:kernel/verifier.dart'; 11 import 'package:kernel/verifier.dart';
12 import 'package:path/path.dart' as pathlib; 12 import 'package:path/path.dart' as pathlib;
13 import 'package:test/test.dart'; 13 import 'package:test/test.dart';
14 14
15 final String testcaseDirectory = 'pkg/kernel/testcases'; 15 final String testcaseDirectory = 'pkg/kernel/testcases';
16 final String inputDirectory = 'pkg/kernel/testcases/input'; 16 final String inputDirectory = 'pkg/kernel/testcases/input';
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ' rm $filenameOfBaseline\n' 80 ' rm $filenameOfBaseline\n'
81 'Command to see the diff:\n' 81 'Command to see the diff:\n'
82 ' diff -cd $outputDirectory/$shortName.{baseline,current}.txt' 82 ' diff -cd $outputDirectory/$shortName.{baseline,current}.txt'
83 '\n'); 83 '\n');
84 } 84 }
85 } 85 }
86 }); 86 });
87 } 87 }
88 } 88 }
89 } 89 }
OLDNEW
« no previous file with comments | « pkg/kernel/lib/analyzer/loader.dart ('k') | pkg/kernel/test/closures/suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698