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

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

Issue 755373003: Try to resolve incrementally whole functions, constructors or methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/generated/incremental_resolver.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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 4930 matching lines...) Expand 10 before | Expand all | Expand 10 after
4941 * | [ExportDirective] 4941 * | [ExportDirective]
4942 * 4942 *
4943 * declarations ::= 4943 * declarations ::=
4944 * [CompilationUnitMember]* 4944 * [CompilationUnitMember]*
4945 * </pre> 4945 * </pre>
4946 */ 4946 */
4947 class CompilationUnit extends AstNode { 4947 class CompilationUnit extends AstNode {
4948 /** 4948 /**
4949 * The first token in the token stream that was parsed to form this compilatio n unit. 4949 * The first token in the token stream that was parsed to form this compilatio n unit.
4950 */ 4950 */
4951 final Token beginToken; 4951 Token beginToken;
4952 4952
4953 /** 4953 /**
4954 * The script tag at the beginning of the compilation unit, or `null` if there is no script 4954 * The script tag at the beginning of the compilation unit, or `null` if there is no script
4955 * tag in this compilation unit. 4955 * tag in this compilation unit.
4956 */ 4956 */
4957 ScriptTag _scriptTag; 4957 ScriptTag _scriptTag;
4958 4958
4959 /** 4959 /**
4960 * The directives contained in this compilation unit. 4960 * The directives contained in this compilation unit.
4961 */ 4961 */
(...skipping 15741 matching lines...) Expand 10 before | Expand all | Expand 10 after
20703 } 20703 }
20704 20704
20705 @override 20705 @override
20706 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); 20706 accept(AstVisitor visitor) => visitor.visitYieldStatement(this);
20707 20707
20708 @override 20708 @override
20709 void visitChildren(AstVisitor visitor) { 20709 void visitChildren(AstVisitor visitor) {
20710 safelyVisitChild(_expression, visitor); 20710 safelyVisitChild(_expression, visitor);
20711 } 20711 }
20712 } 20712 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/generated/incremental_resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698