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

Unified Diff: pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart

Issue 1109393012: Allow use of deferred type-literals in non-constant contexts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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/dart_backend/backend_ast_emitter.dart
diff --git a/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart b/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart
index beb05de1da9dfeb3434ff3d9e21128967290515f..a578d2efb1f494c2378aaa9bbc9b60ca5456f979 100644
--- a/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart
+++ b/pkg/compiler/lib/src/dart_backend/backend_ast_emitter.dart
@@ -1279,6 +1279,12 @@ class ConstantEmitter
BuilderContext<Statement> context) {
return handlePrimitiveConstant(exp.value);
}
+
+ @override
+ Expression visitDeferred(DeferredConstantExpression exp,
+ BuilderContext<Statement> context) {
+ return exp.expression.accept(this);
+ }
}
/// Moves function parameters into a separate variable if one of its uses is

Powered by Google App Engine
This is Rietveld 408576698