| 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 4407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4418 * | 4418 * |
| 4419 * > classTypeAlias ::= | 4419 * > classTypeAlias ::= |
| 4420 * > [SimpleIdentifier] [TypeParameterList]? '=' 'abstract'? mixinApplicatio
n | 4420 * > [SimpleIdentifier] [TypeParameterList]? '=' 'abstract'? mixinApplicatio
n |
| 4421 * > | 4421 * > |
| 4422 * > mixinApplication ::= | 4422 * > mixinApplication ::= |
| 4423 * > [TypeName] [WithClause] [ImplementsClause]? ';' | 4423 * > [TypeName] [WithClause] [ImplementsClause]? ';' |
| 4424 * | 4424 * |
| 4425 * Deprecated: This class captures obsolete syntax that is no longer part of the | 4425 * Deprecated: This class captures obsolete syntax that is no longer part of the |
| 4426 * Dart language. | 4426 * Dart language. |
| 4427 */ | 4427 */ |
| 4428 @deprecated | |
| 4429 class ClassTypeAlias extends TypeAlias { | 4428 class ClassTypeAlias extends TypeAlias { |
| 4430 /** | 4429 /** |
| 4431 * The name of the class being declared. | 4430 * The name of the class being declared. |
| 4432 */ | 4431 */ |
| 4433 SimpleIdentifier _name; | 4432 SimpleIdentifier _name; |
| 4434 | 4433 |
| 4435 /** | 4434 /** |
| 4436 * The type parameters for the class, or `null` if the class does not have any | 4435 * The type parameters for the class, or `null` if the class does not have any |
| 4437 * type parameters. | 4436 * type parameters. |
| 4438 */ | 4437 */ |
| (...skipping 15678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20117 } | 20116 } |
| 20118 | 20117 |
| 20119 @override | 20118 @override |
| 20120 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); | 20119 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); |
| 20121 | 20120 |
| 20122 @override | 20121 @override |
| 20123 void visitChildren(AstVisitor visitor) { | 20122 void visitChildren(AstVisitor visitor) { |
| 20124 _safelyVisitChild(_expression, visitor); | 20123 _safelyVisitChild(_expression, visitor); |
| 20125 } | 20124 } |
| 20126 } | 20125 } |
| OLD | NEW |