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

Unified Diff: dart/site/try/src/settings.dart

Issue 344243002: Make incremental compilation opt-in. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r37603. Created 6 years, 6 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 | « dart/site/try/src/messages.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/site/try/src/settings.dart
diff --git a/dart/site/try/src/settings.dart b/dart/site/try/src/settings.dart
index 58b306e7406e0d220dd5862aa64b9cbb9159ecee..904f2afef68928f0e730d72c82b365945769d3a3 100644
--- a/dart/site/try/src/settings.dart
+++ b/dart/site/try/src/settings.dart
@@ -90,6 +90,9 @@ void set theme(String b) {
const BooleanUserOption enableCodeCompletion =
const BooleanUserOption('enableCodeCompletion', isHidden: true);
+const BooleanUserOption incrementalCompilation =
+ const BooleanUserOption('incrementalCompilation');
+
const List<UserOption> options = const <UserOption>[
_alwaysRunInWorker,
_verboseCompiler,
@@ -97,6 +100,7 @@ const List<UserOption> options = const <UserOption>[
_onlyAnalyze,
_enableDartMind,
_compilationPaused,
+ incrementalCompilation,
_codeFont,
_theme,
_currentSample,
« no previous file with comments | « dart/site/try/src/messages.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698