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

Unified Diff: pkg/kernel/lib/binary/ast_from_binary.dart

Issue 2778223002: Add primitive to create closures and use it for closure conversion (Closed)
Patch Set: Skip context param in closure type construction, rather than remove it Created 3 years, 9 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/kernel/lib/binary/ast_from_binary.dart
diff --git a/pkg/kernel/lib/binary/ast_from_binary.dart b/pkg/kernel/lib/binary/ast_from_binary.dart
index 64563eb27bd79e1f7c6b6f89ac18e8fa7c6f0ca0..e2a2cd9b01eb30092a58c4a832e47e374618e0b4 100644
--- a/pkg/kernel/lib/binary/ast_from_binary.dart
+++ b/pkg/kernel/lib/binary/ast_from_binary.dart
@@ -828,6 +828,12 @@ class BinaryBuilder {
case Tag.VectorCopy:
var vectorExpression = readExpression();
return new VectorCopy(vectorExpression);
+ case Tag.ClosureCreation:
+ var topLevelFunctionReference = readMemberReference();
+ var contextVector = readExpression();
+ var functionType = readDartType();
+ return new ClosureCreation(
+ topLevelFunctionReference, contextVector, functionType);
default:
throw fail('Invalid expression tag: $tag');
}

Powered by Google App Engine
This is Rietveld 408576698