| 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 library analyzer.src.dart.ast.ast; | 5 library analyzer.src.dart.ast.ast; |
| 6 | 6 |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 | 8 |
| 9 import 'package:analyzer/dart/ast/ast.dart'; | 9 import 'package:analyzer/dart/ast/ast.dart'; |
| 10 import 'package:analyzer/dart/ast/token.dart'; | 10 import 'package:analyzer/dart/ast/token.dart'; |
| (...skipping 7461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7472 */ | 7472 */ |
| 7473 NodeList<Combinator> _combinators; | 7473 NodeList<Combinator> _combinators; |
| 7474 | 7474 |
| 7475 /** | 7475 /** |
| 7476 * The semicolon terminating the directive. | 7476 * The semicolon terminating the directive. |
| 7477 */ | 7477 */ |
| 7478 @override | 7478 @override |
| 7479 Token semicolon; | 7479 Token semicolon; |
| 7480 | 7480 |
| 7481 @override | 7481 @override |
| 7482 String selectedUri; |
| 7483 |
| 7484 @override |
| 7482 Source selectedSource; | 7485 Source selectedSource; |
| 7483 | 7486 |
| 7484 /** | 7487 /** |
| 7485 * Initialize a newly created namespace directive. Either or both of the | 7488 * Initialize a newly created namespace directive. Either or both of the |
| 7486 * [comment] and [metadata] can be `null` if the directive does not have the | 7489 * [comment] and [metadata] can be `null` if the directive does not have the |
| 7487 * corresponding attribute. The list of [combinators] can be `null` if there | 7490 * corresponding attribute. The list of [combinators] can be `null` if there |
| 7488 * are no combinators. | 7491 * are no combinators. |
| 7489 */ | 7492 */ |
| 7490 NamespaceDirectiveImpl( | 7493 NamespaceDirectiveImpl( |
| 7491 Comment comment, | 7494 Comment comment, |
| (...skipping 3609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11101 | 11104 |
| 11102 @override | 11105 @override |
| 11103 dynamic/*=E*/ accept/*<E>*/(AstVisitor/*<E>*/ visitor) => | 11106 dynamic/*=E*/ accept/*<E>*/(AstVisitor/*<E>*/ visitor) => |
| 11104 visitor.visitYieldStatement(this); | 11107 visitor.visitYieldStatement(this); |
| 11105 | 11108 |
| 11106 @override | 11109 @override |
| 11107 void visitChildren(AstVisitor visitor) { | 11110 void visitChildren(AstVisitor visitor) { |
| 11108 _expression?.accept(visitor); | 11111 _expression?.accept(visitor); |
| 11109 } | 11112 } |
| 11110 } | 11113 } |
| OLD | NEW |