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

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

Issue 1155543005: Prepare CompilationUnitElementDelta in IncrementalCompilationUnitElementBuilder. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Move CompilationUnit.replace() into IncrementalCompilationUnitElementBuilder. Created 5 years, 6 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
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/task/incremental_element_builder.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 4658 matching lines...) Expand 10 before | Expand all | Expand 10 after
4669 4669
4670 /** 4670 /**
4671 * The declarations contained in this compilation unit. 4671 * The declarations contained in this compilation unit.
4672 */ 4672 */
4673 NodeList<CompilationUnitMember> _declarations; 4673 NodeList<CompilationUnitMember> _declarations;
4674 4674
4675 /** 4675 /**
4676 * The last token in the token stream that was parsed to form this compilation 4676 * The last token in the token stream that was parsed to form this compilation
4677 * unit. This token should always have a type of [TokenType.EOF]. 4677 * unit. This token should always have a type of [TokenType.EOF].
4678 */ 4678 */
4679 final Token endToken; 4679 Token endToken;
4680 4680
4681 /** 4681 /**
4682 * The element associated with this compilation unit, or `null` if the AST 4682 * The element associated with this compilation unit, or `null` if the AST
4683 * structure has not been resolved. 4683 * structure has not been resolved.
4684 */ 4684 */
4685 CompilationUnitElement element; 4685 CompilationUnitElement element;
4686 4686
4687 /** 4687 /**
4688 * The line information for this compilation unit. 4688 * The line information for this compilation unit.
4689 */ 4689 */
(...skipping 15366 matching lines...) Expand 10 before | Expand all | Expand 10 after
20056 } 20056 }
20057 20057
20058 @override 20058 @override
20059 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); 20059 accept(AstVisitor visitor) => visitor.visitYieldStatement(this);
20060 20060
20061 @override 20061 @override
20062 void visitChildren(AstVisitor visitor) { 20062 void visitChildren(AstVisitor visitor) {
20063 _safelyVisitChild(_expression, visitor); 20063 _safelyVisitChild(_expression, visitor);
20064 } 20064 }
20065 } 20065 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/task/incremental_element_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698