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

Unified Diff: pkg/kernel/binary.md

Issue 2790093002: Hacky streaming of VariableGet (Closed)
Patch Set: 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..098f697ab2703f072d6ab89bca0efb9ac92bd1fe 100644
--- a/pkg/kernel/binary.md
+++ b/pkg/kernel/binary.md
@@ -338,6 +338,7 @@ type InvalidExpression extends Expression {
type VariableGet extends Expression {
Byte tag = 20;
FileOffset fileOffset;
+ UInt variableDeclarationPosition; // Notice that this field is temporary.
Kevin Millikin (Google) 2017/04/05 08:59:57 I don't think the comment belongs here. But do sa
VariableReference variable;
}
@@ -345,6 +346,7 @@ type SpecializedVariableGet extends Expression {
Byte tag = 128 + N; // Where 0 <= N < 8.
// Equivalent to a VariableGet with index N.
FileOffset fileOffset;
+ UInt variableDeclarationPosition; // Notice that this field is temporary.
}
type VariableSet extends Expression {
« 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