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

Unified Diff: dart/frog/frog_options.dart

Issue 9373019: Frog shouldn't read libraries with --leg_only. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 10 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 | dart/frog/tests/leg_only/leg_only.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/frog_options.dart
diff --git a/dart/frog/frog_options.dart b/dart/frog/frog_options.dart
index 231f30ada384f54e46b06f85d7d279f243342a54..175f724a966b247ba7b755fbac37fc3692bb661a 100644
--- a/dart/frog/frog_options.dart
+++ b/dart/frog/frog_options.dart
@@ -27,7 +27,6 @@ class FrogOptions {
// Options that modify behavior significantly
- bool enableLeg = false;
bool legOnly = false;
bool enableAsserts = false;
bool enableTypeChecks = false;
@@ -83,12 +82,9 @@ class FrogOptions {
var arg = args[i];
switch (arg) {
+ case '--leg':
ngeoffray 2012/02/09 09:14:21 Should we remove the other flags?
ahe 2012/02/09 10:05:33 In a few days. Right now we have an open VM bug th
case '--enable_leg':
- enableLeg = true;
- break;
-
case '--leg_only':
- enableLeg = true;
legOnly = true;
break;
« no previous file with comments | « no previous file | dart/frog/tests/leg_only/leg_only.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698