| 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 15683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15694 } else if (parent is ClassTypeAlias) { | 15694 } else if (parent is ClassTypeAlias) { |
| 15695 return identical(this, parent.name); | 15695 return identical(this, parent.name); |
| 15696 } else if (parent is ConstructorDeclaration) { | 15696 } else if (parent is ConstructorDeclaration) { |
| 15697 return identical(this, parent.name); | 15697 return identical(this, parent.name); |
| 15698 } else if (parent is DeclaredIdentifier) { | 15698 } else if (parent is DeclaredIdentifier) { |
| 15699 return identical(this, parent.identifier); | 15699 return identical(this, parent.identifier); |
| 15700 } else if (parent is FunctionDeclaration) { | 15700 } else if (parent is FunctionDeclaration) { |
| 15701 return identical(this, parent.name); | 15701 return identical(this, parent.name); |
| 15702 } else if (parent is FunctionTypeAlias) { | 15702 } else if (parent is FunctionTypeAlias) { |
| 15703 return identical(this, parent.name); | 15703 return identical(this, parent.name); |
| 15704 } else if (parent is ImportDirective) { |
| 15705 return identical(this, parent.prefix); |
| 15704 } else if (parent is Label) { | 15706 } else if (parent is Label) { |
| 15705 return identical(this, parent.label) && (parent.parent is LabeledStatement
); | 15707 return identical(this, parent.label) && (parent.parent is LabeledStatement
); |
| 15706 } else if (parent is MethodDeclaration) { | 15708 } else if (parent is MethodDeclaration) { |
| 15707 return identical(this, parent.name); | 15709 return identical(this, parent.name); |
| 15708 } else if (parent is FunctionTypedFormalParameter || parent is SimpleFormalP
arameter) { | 15710 } else if (parent is FunctionTypedFormalParameter || parent is SimpleFormalP
arameter) { |
| 15709 return identical(this, (parent as NormalFormalParameter).identifier); | 15711 return identical(this, (parent as NormalFormalParameter).identifier); |
| 15710 } else if (parent is TypeParameter) { | 15712 } else if (parent is TypeParameter) { |
| 15711 return identical(this, parent.name); | 15713 return identical(this, parent.name); |
| 15712 } else if (parent is VariableDeclaration) { | 15714 } else if (parent is VariableDeclaration) { |
| 15713 return identical(this, parent.name); | 15715 return identical(this, parent.name); |
| (...skipping 3851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19565 _elements[index] = node; | 19567 _elements[index] = node; |
| 19566 } | 19568 } |
| 19567 void clear() { | 19569 void clear() { |
| 19568 _elements = <E> []; | 19570 _elements = <E> []; |
| 19569 } | 19571 } |
| 19570 int get length => _elements.length; | 19572 int get length => _elements.length; |
| 19571 void set length(int value) { | 19573 void set length(int value) { |
| 19572 throw new UnsupportedError("Cannot resize NodeList."); | 19574 throw new UnsupportedError("Cannot resize NodeList."); |
| 19573 } | 19575 } |
| 19574 } | 19576 } |
| OLD | NEW |