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

Unified Diff: pkg/compiler/lib/src/js_backend/constant_handler_javascript.dart

Issue 1927963002: Support compilation of Hello World (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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/compiler/lib/src/js_backend/constant_handler_javascript.dart
diff --git a/pkg/compiler/lib/src/js_backend/constant_handler_javascript.dart b/pkg/compiler/lib/src/js_backend/constant_handler_javascript.dart
index 3bc94e5eb070cbed11303a4f6bf3cbe91b99acca..bcfccdd95f268cbb6575591b2cd6fffd3c023050 100644
--- a/pkg/compiler/lib/src/js_backend/constant_handler_javascript.dart
+++ b/pkg/compiler/lib/src/js_backend/constant_handler_javascript.dart
@@ -245,7 +245,10 @@ class JavaScriptConstantCompiler extends ConstantCompilerBase
}
}
+ @override
ConstantValue getConstantValue(ConstantExpression expression) {
+ assert(invariant(CURRENT_ELEMENT_SPANNABLE, expression != null));
+ evaluate(expression);
ConstantValue value = super.getConstantValue(expression);
if (value == null &&
expression != null &&

Powered by Google App Engine
This is Rietveld 408576698