OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
7 | 7 |
8 library engine.ast; | 8 library engine.ast; |
9 | 9 |
10 import 'dart:collection'; | 10 import 'dart:collection'; |
(...skipping 4658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4669 | 4669 |
4670 /** | 4670 /** |
4671 * The declarations contained in this compilation unit. | 4671 * The declarations contained in this compilation unit. |
4672 */ | 4672 */ |
4673 NodeList<CompilationUnitMember> _declarations; | 4673 NodeList<CompilationUnitMember> _declarations; |
4674 | 4674 |
4675 /** | 4675 /** |
4676 * The last token in the token stream that was parsed to form this compilation | 4676 * The last token in the token stream that was parsed to form this compilation |
4677 * unit. This token should always have a type of [TokenType.EOF]. | 4677 * unit. This token should always have a type of [TokenType.EOF]. |
4678 */ | 4678 */ |
4679 final Token endToken; | 4679 Token endToken; |
4680 | 4680 |
4681 /** | 4681 /** |
4682 * The element associated with this compilation unit, or `null` if the AST | 4682 * The element associated with this compilation unit, or `null` if the AST |
4683 * structure has not been resolved. | 4683 * structure has not been resolved. |
4684 */ | 4684 */ |
4685 CompilationUnitElement element; | 4685 CompilationUnitElement element; |
4686 | 4686 |
4687 /** | 4687 /** |
4688 * The line information for this compilation unit. | 4688 * The line information for this compilation unit. |
4689 */ | 4689 */ |
(...skipping 15366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
20056 } | 20056 } |
20057 | 20057 |
20058 @override | 20058 @override |
20059 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); | 20059 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); |
20060 | 20060 |
20061 @override | 20061 @override |
20062 void visitChildren(AstVisitor visitor) { | 20062 void visitChildren(AstVisitor visitor) { |
20063 _safelyVisitChild(_expression, visitor); | 20063 _safelyVisitChild(_expression, visitor); |
20064 } | 20064 } |
20065 } | 20065 } |
OLD | NEW |