| OLD | NEW |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 1 // This code was auto-generated, is not intended to be edited, and is subject to |
| 2 // significant change. Please see the README file for more information. | 2 // significant change. Please see the README file for more information. |
| 3 library engine.ast; | 3 library engine.ast; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'java_core.dart'; | 5 import 'java_core.dart'; |
| 6 import 'java_engine.dart'; | 6 import 'java_engine.dart'; |
| 7 import 'error.dart'; | 7 import 'error.dart'; |
| 8 import 'source.dart' show LineInfo; | 8 import 'source.dart' show LineInfo; |
| 9 import 'scanner.dart'; | 9 import 'scanner.dart'; |
| 10 import 'engine.dart' show AnalysisEngine; | 10 import 'engine.dart' show AnalysisEngine; |
| 11 import 'utilities_dart.dart'; | 11 import 'utilities_dart.dart'; |
| 12 import 'element.dart' hide Annotation; | 12 import 'element.dart'; |
| 13 /** | 13 /** |
| 14 * The abstract class {@code ASTNode} defines the behavior common to all nodes i
n the AST structure | 14 * The abstract class {@code ASTNode} defines the behavior common to all nodes i
n the AST structure |
| 15 * for a Dart program. | 15 * for a Dart program. |
| 16 * @coverage dart.engine.ast | 16 * @coverage dart.engine.ast |
| 17 */ | 17 */ |
| 18 abstract class ASTNode { | 18 abstract class ASTNode { |
| 19 | 19 |
| 20 /** | 20 /** |
| 21 * The parent of the node, or {@code null} if the node is the root of an AST s
tructure. | 21 * The parent of the node, or {@code null} if the node is the root of an AST s
tructure. |
| 22 */ | 22 */ |
| (...skipping 15449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15472 return elements[elements.length - 1].endToken; | 15472 return elements[elements.length - 1].endToken; |
| 15473 } | 15473 } |
| 15474 /** | 15474 /** |
| 15475 * Return the node that is the parent of each of the elements in the list. | 15475 * Return the node that is the parent of each of the elements in the list. |
| 15476 * @return the node that is the parent of each of the elements in the list | 15476 * @return the node that is the parent of each of the elements in the list |
| 15477 */ | 15477 */ |
| 15478 ASTNode getOwner() { | 15478 ASTNode getOwner() { |
| 15479 return owner; | 15479 return owner; |
| 15480 } | 15480 } |
| 15481 } | 15481 } |
| OLD | NEW |