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

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

Issue 839553005: Add a flag/options for enabling incremental resolution validation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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/DartCore.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
index 102e094bcd9c30e66a4e3cf37b2ec420f50bfbb0..97be06ee3b47e918f2d8660187ef7e33a0ba31b5 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
@@ -526,6 +526,11 @@ public class DartCore extends Plugin implements DartSdkListener {
"--incremental-resolution-log=" + log);
}
}
+ if (DartCoreDebug.ANALYSIS_SERVER_INCREMENTAL_RESOLUTION_VALIDATION) {
+ additionalArguments = ArrayUtils.add(
+ additionalArguments,
+ "--incremental-resolution-validation");
+ }
if (DartCoreDebug.ANALYSIS_SERVER_PRINT_TO_CONSOLE) {
additionalArguments = ArrayUtils.add(additionalArguments, "--internal-print-to-console");
}

Powered by Google App Engine
This is Rietveld 408576698