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

Unified Diff: tools/testing/dart/options.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 | « tools/testing/dart/environment.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/options.dart
diff --git a/tools/testing/dart/options.dart b/tools/testing/dart/options.dart
index 6ea7f68b9e0e8a195c7bf16bcb65a87d2495bf6b..26a687a8a9283649cc994aebb2165495d4849a51 100644
--- a/tools/testing/dart/options.dart
+++ b/tools/testing/dart/options.dart
@@ -178,8 +178,10 @@ simdbc, simdbc64''',
'fast_startup', 'Pass the --fast-startup flag to dart2js.'),
new _Option.bool('enable_asserts',
'Pass the --enable-asserts flag to dart2js or to the vm.'),
- new _Option.bool('dart2js_with_kernel',
- 'Enable the internal pipeline in dart2js to use kernel.'),
+ new _Option.bool(
+ 'dart2js_with_kernel', 'Pass the --use-kernel flag to dart2js.'),
+ new _Option.bool('dart2js_with_kernel_in_ssa',
+ 'Pass the --use-kernel-in-ssa flag to dart2js.'),
new _Option.bool('hot_reload', 'Run hot reload stress tests.'),
new _Option.bool(
'hot_reload_rollback', 'Run hot reload rollback stress tests.'),
@@ -594,6 +596,8 @@ compiler.''')
useFastStartup: data["fast_startup"] as bool,
useEnableAsserts: data["enable_asserts"] as bool,
useDart2JSWithKernel: data["dart2js_with_kernel"] as bool,
+ useDart2JSWithKernelInSsa:
+ data["dart2js_with_kernel_in_ssa"] as bool,
writeDebugLog: data["write_debug_log"] as bool,
writeTestOutcomeLog: data["write_test_outcome_log"] as bool,
drtPath: data["drt"] as String,
« no previous file with comments | « tools/testing/dart/environment.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698