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

Unified Diff: pkg/kernel/binary.md

Issue 2747813003: [kernel] debugging for in statement (Closed)
Patch Set: Updated binary.md 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 | « pkg/front_end/lib/src/fasta/kernel/body_builder.dart ('k') | pkg/kernel/lib/binary/ast_from_binary.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 71f3d9461824a429f1b36587f0112b3c744227a9..c6a2154add5b6faa5dc879e977429b371f8bb324 100644
--- a/pkg/kernel/binary.md
+++ b/pkg/kernel/binary.md
@@ -722,6 +722,7 @@ type ForStatement extends Statement {
type ForInStatement extends Statement {
Byte tag = 70;
+ FileOffset fileOffset; // note that this is actually the body offset
VariableDeclaration variable;
Expression iterable;
Statement body;
@@ -729,6 +730,7 @@ type ForInStatement extends Statement {
type AsyncForInStatement extends Statement {
Byte tag = 80; // Note: tag is out of order.
+ FileOffset fileOffset; // note that this is actually the body offset
VariableDeclaration variable;
Expression iterable;
Statement body;
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/body_builder.dart ('k') | pkg/kernel/lib/binary/ast_from_binary.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698