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; |
} |