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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java

Issue 439933005: first incremental cut at editor without packages directories (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 6 years, 4 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
Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java
index 63cadea6a5bf8415199872832ca0dcb12ba071c7..9c121312b81aa34151a59c573475d839c7c66d3e 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCoreDebug.java
@@ -71,6 +71,7 @@ public class DartCoreDebug {
public static final boolean ENABLE_ANALYSIS_SERVER = isOptionTrue("experimental/analysisServer");
public static final boolean ANALYSIS_SERVER_DEBUG = isOptionTrue("experimental/analysisServer/debug");
public static final String ANALYSIS_SERVER_LOG_FILE = getOptionValue("experimental/analysisServer/logFile");
+ public static final boolean NO_PUB_PACKAGES = isOptionTrue("experimental/noPubPackages");
// Persistent developer settings
@@ -111,6 +112,7 @@ public class DartCoreDebug {
instrumentation.metric("ENABLE_THEMES", ENABLE_THEMES);
instrumentation.metric("ENABLE_TAB_COLORING", ENABLE_TAB_COLORING);
instrumentation.metric("ENABLE_HTML_VALIDATION", ENABLE_HTML_VALIDATION);
+ instrumentation.metric("NO_PUB_PACKAGES", NO_PUB_PACKAGES);
instrumentation.metric("DISABLE_MARK_OCCURRENCES", DISABLE_MARK_OCCURRENCES);

Powered by Google App Engine
This is Rietveld 408576698