| 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.dart.ast.ast; | 5 library analyzer.dart.ast.ast; |
| 6 | 6 |
| 7 import 'package:analyzer/dart/element/element.dart'; | 7 import 'package:analyzer/dart/element/element.dart'; |
| 8 import 'package:analyzer/dart/element/type.dart'; | 8 import 'package:analyzer/dart/element/type.dart'; |
| 9 import 'package:analyzer/src/generated/ast.dart'; | 9 import 'package:analyzer/src/dart/ast/ast.dart'; |
| 10 import 'package:analyzer/src/generated/element.dart' show AuxiliaryElements; | 10 import 'package:analyzer/src/dart/element/element.dart' show AuxiliaryElements; |
| 11 import 'package:analyzer/src/generated/java_core.dart'; | 11 import 'package:analyzer/src/generated/java_core.dart'; |
| 12 import 'package:analyzer/src/generated/java_engine.dart'; | 12 import 'package:analyzer/src/generated/java_engine.dart'; |
| 13 import 'package:analyzer/src/generated/scanner.dart'; | 13 import 'package:analyzer/src/generated/scanner.dart'; |
| 14 import 'package:analyzer/src/generated/source.dart' show LineInfo, Source; | 14 import 'package:analyzer/src/generated/source.dart' show LineInfo, Source; |
| 15 import 'package:analyzer/src/generated/utilities_dart.dart'; | 15 import 'package:analyzer/src/generated/utilities_dart.dart'; |
| 16 | 16 |
| 17 /** | 17 /** |
| 18 * Two or more string literals that are implicitly concatenated because of being | 18 * Two or more string literals that are implicitly concatenated because of being |
| 19 * adjacent (separated only by whitespace). | 19 * adjacent (separated only by whitespace). |
| 20 * | 20 * |
| (...skipping 7955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7976 /** | 7976 /** |
| 7977 * Return the 'yield' keyword. | 7977 * Return the 'yield' keyword. |
| 7978 */ | 7978 */ |
| 7979 Token get yieldKeyword; | 7979 Token get yieldKeyword; |
| 7980 | 7980 |
| 7981 /** | 7981 /** |
| 7982 * Return the 'yield' keyword to the given [token]. | 7982 * Return the 'yield' keyword to the given [token]. |
| 7983 */ | 7983 */ |
| 7984 void set yieldKeyword(Token token); | 7984 void set yieldKeyword(Token token); |
| 7985 } | 7985 } |
| OLD | NEW |