| Index: pkg/kernel/lib/ast.dart
|
| diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart
|
| index aaf08707017143f4d9724089a90e662a708f50c7..9962d820ce19fb92a5c143b56f295e2ecb88f25b 100644
|
| --- a/pkg/kernel/lib/ast.dart
|
| +++ b/pkg/kernel/lib/ast.dart
|
| @@ -498,6 +498,11 @@ class _MemberAccessor {
|
| }
|
|
|
| abstract class Member extends TreeNode {
|
| + /// End offset in the source file it comes from. Valid values are from 0 and
|
| + /// up, or -1 ([TreeNode.noOffset]) if the file end offset is not available
|
| + /// (this is the default if none is specifically set).
|
| + int fileEndOffset = TreeNode.noOffset;
|
| +
|
| /// List of metadata annotations on the member.
|
| ///
|
| /// This defaults to an immutable empty list. Use [addAnnotation] to add
|
| @@ -1104,7 +1109,13 @@ class LocalInitializer extends Initializer {
|
| /// This may occur in a procedure, constructor, function expression, or local
|
| /// function declaration.
|
| class FunctionNode extends TreeNode {
|
| + /// End offset in the source file it comes from. Valid values are from 0 and
|
| + /// up, or -1 ([TreeNode.noOffset]) if the file end offset is not available
|
| + /// (this is the default if none is specifically set).
|
| + int fileEndOffset = TreeNode.noOffset;
|
| +
|
| AsyncMarker asyncMarker;
|
| + bool debuggable = true;
|
| List<TypeParameter> typeParameters;
|
| int requiredParameterCount;
|
| List<VariableDeclaration> positionalParameters;
|
|
|