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

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

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. Created 8 years, 1 month 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
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 568c8afafeadcaaedad0f5abeeed836911d70e47..93220fbd3e53264230779071e87b2a9153cb85fb 100644
--- a/compiler/java/com/google/dart/compiler/CommandLineOptions.java
+++ b/compiler/java/com/google/dart/compiler/CommandLineOptions.java
@@ -30,9 +30,6 @@ public class CommandLineOptions {
usage = "Batch mode (for unit testing)")
private boolean batch = false;
- @Option(name = "--expose_core_impl", usage = "Automatic import of dart:coreimpl library")
- private boolean exposeCoreImpl = false;
-
@Option(name = "--error_format",
usage = "Format errors as normal or machine")
private String errorFormat = "";
@@ -125,13 +122,6 @@ public class CommandLineOptions {
@Argument
private final List<String> sourceFiles = new ArrayList<String>();
- /**
- * @return <code>true</code> to automatically import dart:coreimpl
- */
- public boolean shouldExposeCoreImpl() {
- return exposeCoreImpl;
- }
-
public String getJvmMetricOptions() {
if (!showJvmMetrics) {
return null;

Powered by Google App Engine
This is Rietveld 408576698