Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: pkg/analyzer/lib/dart/ast/ast.dart

Issue 1595243003: Move AST implementation out of generated (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/dart/ast/ast.dart » ('j') | pkg/analyzer/lib/src/generated/ast.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698