Index: pkg/kernel/lib/ast.dart |
diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart |
index 7afda0c84ed66e7fdd65b766b0a9c59dc66eac6c..0b019870c0367e71da86079c4984453241bdc2e6 100644 |
--- a/pkg/kernel/lib/ast.dart |
+++ b/pkg/kernel/lib/ast.dart |
@@ -632,9 +632,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; |
@@ -4402,9 +4399,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); |