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

Unified Diff: pkg/front_end/lib/compiler_options.dart

Issue 3003743002: Move tools to tool folder. (Closed)
Patch Set: Fix two problems that show up elsewhere. Created 3 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: pkg/front_end/lib/compiler_options.dart
diff --git a/pkg/front_end/lib/compiler_options.dart b/pkg/front_end/lib/compiler_options.dart
index 298b45659f72d4c0bafa384225d4dacc1a916f9a..9381b096083e828d1b7452ffa7ab7b1bd437424d 100644
--- a/pkg/front_end/lib/compiler_options.dart
+++ b/pkg/front_end/lib/compiler_options.dart
@@ -217,18 +217,19 @@ class CompilerOptions {
/// Whether the compiler should throw as soon as it encounters a
/// compilation error.
- // TODO(sigmund): change the default (issue #30194).
- bool throwOnErrors = true;
+ ///
+ /// Typically used by developers to debug internals of the compiler.
+ bool throwOnErrorsForDebugging = false;
/// Whether the compiler should throw as soon as it encounters a
/// compilation warning.
///
/// Typically used by developers to debug internals of the compiler.
- bool throwOnWarnings = false;
+ bool throwOnWarningsForDebugging = false;
/// Whether the compiler should throw as soon as it encounters a
/// compilation nit.
///
/// Typically used by developers to debug internals of the compiler.
- bool throwOnNits = false;
+ bool throwOnNitsForDebugging = false;
}
« no previous file with comments | « no previous file | pkg/front_end/lib/src/base/processed_options.dart » ('j') | pkg/front_end/lib/src/base/processed_options.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698