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

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

Issue 896613003: Fix for issue 22245 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/analyzer/test/generated/ast_test.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 7916 matching lines...) Expand 10 before | Expand all | Expand 10 after
7927 @override 7927 @override
7928 Iterable get childEntities => super._childEntities 7928 Iterable get childEntities => super._childEntities
7929 ..add(keyword) 7929 ..add(keyword)
7930 ..add(_type) 7930 ..add(_type)
7931 ..add(thisToken) 7931 ..add(thisToken)
7932 ..add(period) 7932 ..add(period)
7933 ..add(identifier) 7933 ..add(identifier)
7934 ..add(_parameters); 7934 ..add(_parameters);
7935 7935
7936 @override 7936 @override
7937 Token get endToken => identifier.endToken; 7937 Token get endToken {
7938 if (_parameters != null) {
7939 return _parameters.endToken;
7940 }
7941 return identifier.endToken;
7942 }
7938 7943
7939 @override 7944 @override
7940 bool get isConst => 7945 bool get isConst =>
7941 (keyword is KeywordToken) && (keyword as KeywordToken).keyword == Keyword. CONST; 7946 (keyword is KeywordToken) && (keyword as KeywordToken).keyword == Keyword. CONST;
7942 7947
7943 @override 7948 @override
7944 bool get isFinal => 7949 bool get isFinal =>
7945 (keyword is KeywordToken) && (keyword as KeywordToken).keyword == Keyword. FINAL; 7950 (keyword is KeywordToken) && (keyword as KeywordToken).keyword == Keyword. FINAL;
7946 7951
7947 /** 7952 /**
(...skipping 13604 matching lines...) Expand 10 before | Expand all | Expand 10 after
21552 } 21557 }
21553 21558
21554 @override 21559 @override
21555 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); 21560 accept(AstVisitor visitor) => visitor.visitYieldStatement(this);
21556 21561
21557 @override 21562 @override
21558 void visitChildren(AstVisitor visitor) { 21563 void visitChildren(AstVisitor visitor) {
21559 safelyVisitChild(_expression, visitor); 21564 safelyVisitChild(_expression, visitor);
21560 } 21565 }
21561 } 21566 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/test/generated/ast_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698