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

Unified Diff: pkg/kernel/binary.md

Issue 2778223002: Add primitive to create closures and use it for closure conversion (Closed)
Patch Set: Follow common pattern for AST nodes with References in ClosureCreation 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
« no previous file with comments | « no previous file | pkg/kernel/lib/ast.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/binary.md
diff --git a/pkg/kernel/binary.md b/pkg/kernel/binary.md
index bd89d60413832f382e1fb8b7d939cc2103a349da..aae1e3008d2e4707f340c23737a3355a52f7ca1d 100644
--- a/pkg/kernel/binary.md
+++ b/pkg/kernel/binary.md
@@ -681,6 +681,13 @@ type VectorCopy extends Expression {
Expression vectorExpression;
}
+type ClosureCreation extends Expression {
+ Byte tag = 106;
+ MemberReference topLevelFunctionReference;
+ Expression contextVector;
+ FunctionType functionType;
+}
+
abstract type Statement extends Node {}
type InvalidStatement extends Statement {
« no previous file with comments | « no previous file | pkg/kernel/lib/ast.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698