| Index: pkg/kernel/lib/ast.dart
|
| diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart
|
| index c1b6670b5cf8fd0152b0a4382d768d3b0ea3403d..a7eb26b8504b68d440b78835ee40de3ab4867834 100644
|
| --- a/pkg/kernel/lib/ast.dart
|
| +++ b/pkg/kernel/lib/ast.dart
|
| @@ -489,6 +489,9 @@ enum ClassLevel {
|
| /// rule directly, as doing so can obstruct transformations. It is possible to
|
| /// transform a mixin application to become a regular class, and vice versa.
|
| class Class extends NamedNode {
|
| + /// 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;
|
|
|
| @@ -3587,7 +3590,7 @@ class VariableDeclaration extends Statement {
|
| DartType type; // Not null, defaults to dynamic.
|
|
|
| /// Offset of the declaration, set and used when writing the binary.
|
| - int binaryOffset = -1;
|
| + int binaryOffsetNoTag = -1;
|
|
|
| /// For locals, this is the initial value.
|
| /// For parameters, this is the default value.
|
|
|