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

Unified Diff: pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/runtime.dart

Issue 2996573002: fix #28988, remove throw on Dart1 incompatible is-checks for dartdevc (Closed)
Patch Set: fix changelog 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/dev_compiler/tool/input_sdk/private/ddc_runtime/runtime.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/runtime.dart b/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/runtime.dart
index ea935073b2c47092ab0848fdb6998d70e584662f..463b970dcfd21f7d24493fcb77ffafa7dcfa33de 100644
--- a/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/runtime.dart
+++ b/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/runtime.dart
@@ -123,11 +123,8 @@ final global_ = JS(
settings.ignoreWhitelistedErrors : true);
$ignoreAllErrors(
- 'ignoreAllErrors' in settings ?settings.ignoreAllErrors : false);
+ 'ignoreAllErrors' in settings ? settings.ignoreAllErrors : false);
- $failForWeakModeIsChecks(
- 'failForWeakModeIsChecks' in settings ?
- settings.failForWeakModeIsChecks : true);
$trackProfile(
'trackProfile' in settings ? settings.trackProfile : false);

Powered by Google App Engine
This is Rietveld 408576698