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

Unified Diff: pkg/kernel/lib/ast.dart

Issue 2972343002: [kernel] Insert kernel bodies into VM heap (Closed)
Patch Set: Rebased 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
Index: pkg/kernel/lib/ast.dart
diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart
index 93fcd5c882380fb5d00ed69cc32f1db3978b8ba0..b115028a46dfdd43e4ec2dfe5026673ba33453d2 100644
--- a/pkg/kernel/lib/ast.dart
+++ b/pkg/kernel/lib/ast.dart
@@ -590,9 +590,6 @@ class Class extends NamedNode {
/// (this is the default if none is specifically set).
int fileEndOffset = TreeNode.noOffset;
- /// Offset of the declaration, set and used when writing the binary.
- int binaryOffset = -1;
-
/// The degree to which the contents of the class have been loaded.
ClassLevel level = ClassLevel.Body;
@@ -4347,9 +4344,6 @@ class TypeParameter extends TreeNode {
/// be set to the root class for type parameters without an explicit bound.
DartType bound;
- /// Offset of the declaration, set and used when writing the binary.
- int binaryOffset = 0;
-
TypeParameter([this.name, this.bound]);
accept(TreeVisitor v) => v.visitTypeParameter(this);

Powered by Google App Engine
This is Rietveld 408576698