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); |