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

Unified Diff: compiler/java/com/google/dart/compiler/CommandLineOptions.java

Issue 9950044: Removed unused dartc 'disable-type-optimization' command line flag (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/java/com/google/dart/compiler/CommandLineOptions.java
diff --git a/compiler/java/com/google/dart/compiler/CommandLineOptions.java b/compiler/java/com/google/dart/compiler/CommandLineOptions.java
index 5ebd4d509e2abf28f83f396fd9e911fb70d6a95d..3cf9695c2798dc1a0cc6ca1f22e4b1c692b2581d 100644
--- a/compiler/java/com/google/dart/compiler/CommandLineOptions.java
+++ b/compiler/java/com/google/dart/compiler/CommandLineOptions.java
@@ -41,10 +41,6 @@ public class CommandLineOptions {
usage = "Generate runtime type checks")
private boolean developerModeChecks = false;
- @Option(name = "--disable-type-optimizations",
- usage = "Turn off type optimizations\n (for debugging)")
- private boolean disableTypeOptimizations = false;
-
@Option(name = "--ignore-unrecognized-flags",
usage = "Ignore unrecognized command line flags")
private boolean ignoreUnrecognizedFlags = false;
@@ -171,10 +167,6 @@ public class CommandLineOptions {
return batch;
}
- public boolean disableTypeOptimizations() {
- return disableTypeOptimizations;
- }
-
/**
* Returns <code>true</code> if the compiler should print it's help message.
*/
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698