| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library trydart.settings; | 5 library trydart.settings; |
| 6 | 6 |
| 7 import 'user_option.dart'; | 7 import 'user_option.dart'; |
| 8 | 8 |
| 9 const BooleanUserOption _alwaysRunInWorker = | 9 const BooleanUserOption _alwaysRunInWorker = |
| 10 const BooleanUserOption('alwaysRunInWorker'); | 10 const BooleanUserOption('alwaysRunInWorker'); |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 } | 88 } |
| 89 | 89 |
| 90 const BooleanUserOption enableCodeCompletion = | 90 const BooleanUserOption enableCodeCompletion = |
| 91 const BooleanUserOption('enableCodeCompletion', isHidden: true); | 91 const BooleanUserOption('enableCodeCompletion', isHidden: true); |
| 92 | 92 |
| 93 const BooleanUserOption incrementalCompilation = | 93 const BooleanUserOption incrementalCompilation = |
| 94 const BooleanUserOption('incrementalCompilation'); | 94 const BooleanUserOption('incrementalCompilation'); |
| 95 | 95 |
| 96 const BooleanUserOption live = const BooleanUserOption('live', isHidden: true); | 96 const BooleanUserOption live = const BooleanUserOption('live', isHidden: true); |
| 97 | 97 |
| 98 const BooleanUserOption alwaysRunInIframe = |
| 99 const BooleanUserOption('alwaysRunInIframe', isHidden: true); |
| 100 |
| 101 const BooleanUserOption communicateViaBlobs = |
| 102 const BooleanUserOption('communicateViaBlobs', isHidden: true); |
| 103 |
| 98 const List<UserOption> options = const <UserOption>[ | 104 const List<UserOption> options = const <UserOption>[ |
| 99 _alwaysRunInWorker, | 105 _alwaysRunInWorker, |
| 100 _verboseCompiler, | 106 _verboseCompiler, |
| 101 _minified, | 107 _minified, |
| 102 _onlyAnalyze, | 108 _onlyAnalyze, |
| 103 _enableDartMind, | 109 _enableDartMind, |
| 104 _compilationPaused, | 110 _compilationPaused, |
| 105 incrementalCompilation, | 111 incrementalCompilation, |
| 106 live, | 112 live, |
| 107 enableCodeCompletion, | 113 enableCodeCompletion, |
| 108 _codeFont, | 114 _codeFont, |
| 109 _theme, | 115 _theme, |
| 110 _currentSample, | 116 _currentSample, |
| 117 alwaysRunInIframe, |
| 118 communicateViaBlobs, |
| 111 ]; | 119 ]; |
| OLD | NEW |