| 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 4930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4941 * | [ExportDirective] | 4941 * | [ExportDirective] |
| 4942 * | 4942 * |
| 4943 * declarations ::= | 4943 * declarations ::= |
| 4944 * [CompilationUnitMember]* | 4944 * [CompilationUnitMember]* |
| 4945 * </pre> | 4945 * </pre> |
| 4946 */ | 4946 */ |
| 4947 class CompilationUnit extends AstNode { | 4947 class CompilationUnit extends AstNode { |
| 4948 /** | 4948 /** |
| 4949 * The first token in the token stream that was parsed to form this compilatio
n unit. | 4949 * The first token in the token stream that was parsed to form this compilatio
n unit. |
| 4950 */ | 4950 */ |
| 4951 final Token beginToken; | 4951 Token beginToken; |
| 4952 | 4952 |
| 4953 /** | 4953 /** |
| 4954 * The script tag at the beginning of the compilation unit, or `null` if there
is no script | 4954 * The script tag at the beginning of the compilation unit, or `null` if there
is no script |
| 4955 * tag in this compilation unit. | 4955 * tag in this compilation unit. |
| 4956 */ | 4956 */ |
| 4957 ScriptTag _scriptTag; | 4957 ScriptTag _scriptTag; |
| 4958 | 4958 |
| 4959 /** | 4959 /** |
| 4960 * The directives contained in this compilation unit. | 4960 * The directives contained in this compilation unit. |
| 4961 */ | 4961 */ |
| (...skipping 15741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20703 } | 20703 } |
| 20704 | 20704 |
| 20705 @override | 20705 @override |
| 20706 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); | 20706 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); |
| 20707 | 20707 |
| 20708 @override | 20708 @override |
| 20709 void visitChildren(AstVisitor visitor) { | 20709 void visitChildren(AstVisitor visitor) { |
| 20710 safelyVisitChild(_expression, visitor); | 20710 safelyVisitChild(_expression, visitor); |
| 20711 } | 20711 } |
| 20712 } | 20712 } |
| OLD | NEW |