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

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

Issue 2869463002: Better stack trace support (Closed)
Patch Set: some more fixes Created 3 years, 7 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/utils.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/utils.dart b/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/utils.dart
index c7960d14af87598d2524c5b604baea0ef5351996..fa3ef4f001c739a765828a16d0ea31be6090e4dc 100644
--- a/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/utils.dart
+++ b/pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/utils.dart
@@ -60,7 +60,7 @@ defineLazyProperty(to, name, desc) => JS(
value = x;
}
function circularInitError() {
- $throwInternalError('circular initialization for field ' + $name);
+ $throwCyclicInitializationError($name);
}
function lazyGetter() {
if (init == null) return value;

Powered by Google App Engine
This is Rietveld 408576698