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

Unified Diff: tools/testing/dart/configuration.dart

Issue 2981403002: Add dart2js_with_kernel_in_ssa flag to test.dart and pass it along to dart2js (Closed)
Patch Set: Changed flag name Created 3 years, 5 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 | « no previous file | tools/testing/dart/environment.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/configuration.dart
diff --git a/tools/testing/dart/configuration.dart b/tools/testing/dart/configuration.dart
index e2e9e70461834a281386c0fe3296c31d0471d897..2ef33235b4b43f83f5bfedc8c73db80216141c28 100644
--- a/tools/testing/dart/configuration.dart
+++ b/tools/testing/dart/configuration.dart
@@ -49,6 +49,7 @@ class Configuration {
this.useFastStartup,
this.useEnableAsserts,
this.useDart2JSWithKernel,
+ this.useDart2JSWithKernelInSsa,
this.writeDebugLog,
this.writeTestOutcomeLog,
this.drtPath,
@@ -111,6 +112,7 @@ class Configuration {
final bool useFastStartup;
final bool useEnableAsserts;
final bool useDart2JSWithKernel;
+ final bool useDart2JSWithKernelInSsa;
final bool writeDebugLog;
final bool writeTestOutcomeLog;
@@ -217,6 +219,7 @@ class Configuration {
if (useFastStartup) args.add("--fast-startup");
if (useEnableAsserts) args.add("--enable-asserts");
if (useDart2JSWithKernel) args.add("--use-kernel");
+ if (useDart2JSWithKernelInSsa) args.add("--use-kernel-in-ssa");
return args;
}
« no previous file with comments | « no previous file | tools/testing/dart/environment.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698