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

Unified Diff: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/context/AnalysisContextFactory.java

Issue 262253002: Add flag to AnalysisOptions to be able to disable deferred loading. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase with bleeding_edge, updated status files not to break build Created 6 years, 7 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.engine_test/src/com/google/dart/engine/context/AnalysisContextFactory.java
diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/context/AnalysisContextFactory.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/context/AnalysisContextFactory.java
index 5620f002033f2a342b103426ec71aa8096cbb608..e50d356b7d7b259d5d7260ea51a8e202253c9f71 100644
--- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/context/AnalysisContextFactory.java
+++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/context/AnalysisContextFactory.java
@@ -71,6 +71,7 @@ public final class AnalysisContextFactory {
AnalysisOptions currentOptions = getAnalysisOptions();
boolean needsRecompute = currentOptions.getAnalyzeFunctionBodies() != options.getAnalyzeFunctionBodies()
|| currentOptions.getGenerateSdkErrors() != options.getGenerateSdkErrors()
+ || currentOptions.getEnableDeferredLoading() != options.getEnableDeferredLoading()
|| currentOptions.getDart2jsHint() != options.getDart2jsHint()
|| (currentOptions.getHint() && !options.getHint())
|| currentOptions.getPreserveComments() != options.getPreserveComments();

Powered by Google App Engine
This is Rietveld 408576698