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

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

Issue 1462133005: Downwards inference. This adds support to the resolver for downwards (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments 2 Created 5 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
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 engine.ast; 5 library engine.ast;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 8
9 import 'element.dart'; 9 import 'element.dart';
10 import 'engine.dart' show AnalysisEngine; 10 import 'engine.dart' show AnalysisEngine;
(...skipping 5837 matching lines...) Expand 10 before | Expand all | Expand 10 after
5848 _safelyVisitChild(_expression, visitor); 5848 _safelyVisitChild(_expression, visitor);
5849 } 5849 }
5850 } 5850 }
5851 5851
5852 /** 5852 /**
5853 * A node that can occur in the initializer list of a constructor declaration. 5853 * A node that can occur in the initializer list of a constructor declaration.
5854 * 5854 *
5855 * > constructorInitializer ::= 5855 * > constructorInitializer ::=
5856 * > [SuperConstructorInvocation] 5856 * > [SuperConstructorInvocation]
5857 * > | [ConstructorFieldInitializer] 5857 * > | [ConstructorFieldInitializer]
5858 * > | [RedirectingConstructorInvocation]
5858 */ 5859 */
5859 abstract class ConstructorInitializer extends AstNode {} 5860 abstract class ConstructorInitializer extends AstNode {}
5860 5861
5861 /** 5862 /**
5862 * The name of the constructor. 5863 * The name of the constructor.
5863 * 5864 *
5864 * > constructorName ::= 5865 * > constructorName ::=
5865 * > type ('.' identifier)? 5866 * > type ('.' identifier)?
5866 */ 5867 */
5867 class ConstructorName extends AstNode { 5868 class ConstructorName extends AstNode {
(...skipping 14779 matching lines...) Expand 10 before | Expand all | Expand 10 after
20647 } 20648 }
20648 20649
20649 @override 20650 @override
20650 accept(AstVisitor visitor) => visitor.visitYieldStatement(this); 20651 accept(AstVisitor visitor) => visitor.visitYieldStatement(this);
20651 20652
20652 @override 20653 @override
20653 void visitChildren(AstVisitor visitor) { 20654 void visitChildren(AstVisitor visitor) {
20654 _safelyVisitChild(_expression, visitor); 20655 _safelyVisitChild(_expression, visitor);
20655 } 20656 }
20656 } 20657 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/generated/element.dart » ('j') | pkg/analyzer/lib/src/generated/static_type_analyzer.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698