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

Unified Diff: pkg/front_end/lib/src/fasta/analyzer/analyzer_compile.dart

Issue 2825063002: Move kernel baseline tests to front_end. (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/analysis_options.yaml ('k') | pkg/front_end/lib/src/fasta/analyzer/analyzer_target.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/analyzer/analyzer_compile.dart
diff --git a/pkg/front_end/lib/src/fasta/analyzer/analyzer_compile.dart b/pkg/front_end/lib/src/fasta/analyzer/analyzer_compile.dart
index 486493f41050a4d6fb37957466d4d67becfa3505..0739e94176a1b87eb33782061113899938155252 100644
--- a/pkg/front_end/lib/src/fasta/analyzer/analyzer_compile.dart
+++ b/pkg/front_end/lib/src/fasta/analyzer/analyzer_compile.dart
@@ -47,9 +47,11 @@ Future<Uri> compile(List<String> arguments) async {
class AnalyzerCompileTask extends CompileTask {
AnalyzerCompileTask(CompilerContext c, Ticker ticker) : super(c, ticker);
+ @override
AnalyzerTarget createKernelTarget(
- DillTarget dillTarget, TranslateUri uriTranslator) {
- return new AnalyzerTarget(dillTarget, uriTranslator, c.uriToSource);
+ DillTarget dillTarget, TranslateUri uriTranslator, bool strongMode) {
+ return new AnalyzerTarget(
+ dillTarget, uriTranslator, strongMode, c.uriToSource);
}
}
« no previous file with comments | « pkg/front_end/analysis_options.yaml ('k') | pkg/front_end/lib/src/fasta/analyzer/analyzer_target.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698