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

Unified Diff: pkg/kernel/binary.md

Issue 2972343002: [kernel] Insert kernel bodies into VM heap (Closed)
Patch Set: Review comments Created 3 years, 4 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 7ddb029d3c6e9e8f498065520d3305886e69dfb6..a048a8f49b044f219008be0882d000a90668df58 100644
--- a/pkg/kernel/binary.md
+++ b/pkg/kernel/binary.md
@@ -246,9 +246,6 @@ type Field extends Member {
FileOffset fileOffset;
FileOffset fileEndOffset;
Byte flags (isFinal, isConst, isStatic);
- // Byte offset in the binary for the parent class,
- // or 0 if parent is not a class
- UInt parentPosition;
Name name;
// An absolute path URI to the .dart file from which the field was created.
UriReference fileUri;
@@ -263,7 +260,6 @@ type Constructor extends Member {
FileOffset fileOffset;
FileOffset fileEndOffset;
Byte flags (isConst, isExternal);
- UInt parentPosition; // Byte offset in the binary for the parent class.
Name name;
List<Expression> annotations;
FunctionNode function;
@@ -287,9 +283,6 @@ type Procedure extends Member {
FileOffset fileEndOffset;
Byte kind; // Index into the ProcedureKind enum above.
Byte flags (isStatic, isAbstract, isExternal, isConst);
- // Byte offset in the binary for the parent class,
- // or 0 if parent is not a class.
- UInt parentPosition;
Name name;
// An absolute path URI to the .dart file from which the class was created.
UriReference fileUri;
« 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