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

Unified Diff: pkg/kernel/binary.md

Issue 2778223002: Add primitive to create closures and use it for closure conversion (Closed)
Patch Set: Fix bug: put parameters with no initalizers into contexts correctly 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') | pkg/kernel/lib/ast.dart » ('J')
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..4908eaff687d50331463ef7c852b4178720cdc9f 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;
+ String topLevelFunctionName;
asgerf 2017/03/31 11:03:41 This should be a MemberReference
Dmitry Stefantsov 2017/03/31 11:54:13 Thanks! Done.
+ 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') | pkg/kernel/lib/ast.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698