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

Unified Diff: pkg/analyzer/lib/dart/ast/ast_factory.dart

Issue 2613383003: Add support for generic function type syntax, part 1 (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/dart/ast/ast.dart ('k') | pkg/analyzer/lib/dart/ast/resolution_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/dart/ast/ast_factory.dart
diff --git a/pkg/analyzer/lib/dart/ast/ast_factory.dart b/pkg/analyzer/lib/dart/ast/ast_factory.dart
index ffaf90e18f73c9c9742fc30adff887332ceff1df..48b918d8fb72d107b8c08dc39f1a9027df84b37c 100644
--- a/pkg/analyzer/lib/dart/ast/ast_factory.dart
+++ b/pkg/analyzer/lib/dart/ast/ast_factory.dart
@@ -39,7 +39,7 @@ abstract class AstFactory {
* Returns a newly created as expression.
*/
AsExpression asExpression(
- Expression expression, Token asOperator, TypeName type);
+ Expression expression, Token asOperator, TypeAnnotation type);
/**
* Returns a newly created assert initializer. The [comma] and [message]
@@ -128,7 +128,7 @@ abstract class AstFactory {
*/
CatchClause catchClause(
Token onKeyword,
- TypeName exceptionType,
+ TypeAnnotation exceptionType,
Token catchKeyword,
Token leftParenthesis,
SimpleIdentifier exceptionParameter,
@@ -290,7 +290,7 @@ abstract class AstFactory {
Comment comment,
List<Annotation> metadata,
Token keyword,
- TypeName type,
+ TypeAnnotation type,
SimpleIdentifier identifier);
/**
@@ -423,7 +423,7 @@ abstract class AstFactory {
Comment comment,
List<Annotation> metadata,
Token keyword,
- TypeName type,
+ TypeAnnotation type,
Token thisKeyword,
Token period,
SimpleIdentifier identifier,
@@ -502,7 +502,7 @@ abstract class AstFactory {
Comment comment,
List<Annotation> metadata,
Token externalKeyword,
- TypeName returnType,
+ TypeAnnotation returnType,
Token propertyKeyword,
SimpleIdentifier name,
FunctionExpression functionExpression);
@@ -536,7 +536,7 @@ abstract class AstFactory {
Comment comment,
List<Annotation> metadata,
Token keyword,
- TypeName returnType,
+ TypeAnnotation returnType,
SimpleIdentifier name,
TypeParameterList typeParameters,
FormalParameterList parameters,
@@ -551,7 +551,7 @@ abstract class AstFactory {
FunctionTypedFormalParameter functionTypedFormalParameter(
Comment comment,
List<Annotation> metadata,
- TypeName returnType,
+ TypeAnnotation returnType,
SimpleIdentifier identifier,
TypeParameterList typeParameters,
FormalParameterList parameters,
@@ -642,7 +642,7 @@ abstract class AstFactory {
* if the sense of the test is not negated.
*/
IsExpression isExpression(Expression expression, Token isOperator,
- Token notOperator, TypeName type);
+ Token notOperator, TypeAnnotation type);
/**
* Returns a newly created label.
@@ -706,7 +706,7 @@ abstract class AstFactory {
List<Annotation> metadata,
Token externalKeyword,
Token modifierKeyword,
- TypeName returnType,
+ TypeAnnotation returnType,
Token propertyKeyword,
Token operatorKeyword,
SimpleIdentifier name,
@@ -849,7 +849,7 @@ abstract class AstFactory {
Comment comment,
List<Annotation> metadata,
Token keyword,
- TypeName type,
+ TypeAnnotation type,
SimpleIdentifier identifier);
/**
@@ -948,7 +948,7 @@ abstract class AstFactory {
* Returns a newly created list of type arguments.
*/
TypeArgumentList typeArgumentList(
- Token leftBracket, List<TypeName> arguments, Token rightBracket);
+ Token leftBracket, List<TypeAnnotation> arguments, Token rightBracket);
/**
* Returns a newly created type name. The [typeArguments] can be `null` if
@@ -964,7 +964,7 @@ abstract class AstFactory {
* the parameter does not have an upper bound.
*/
TypeParameter typeParameter(Comment comment, List<Annotation> metadata,
- SimpleIdentifier name, Token extendsKeyword, TypeName bound);
+ SimpleIdentifier name, Token extendsKeyword, TypeAnnotation bound);
/**
* Returns a newly created list of type parameters.
@@ -989,10 +989,23 @@ abstract class AstFactory {
Comment comment,
List<Annotation> metadata,
Token keyword,
- TypeName type,
+ TypeAnnotation type,
List<VariableDeclaration> variables);
/**
+ * Returns a newly created generic type alias. Either or both of the
+ * [comment] and [metadata] can be `null` if the variable list does not have
+ * the corresponding attribute. The [typeParameters] can be `null` if there
+ * are no type parameters.
+ */
+ GenericTypeAlias genericTypeAlias(Comment comment, List<Annotation> metadata, Token typedefKeyword, SimpleIdentifier name, TypeParameterList typeParameters, Token equals, GenericFunctionType functionType, Token semicolon);
+
+ /**
+ * Initialize a newly created generic function type.
+ */
+ GenericFunctionType genericFunctionType(TypeAnnotation returnType, Token functionKeyword, TypeParameterList typeParameters, FormalParameterList _parameters);
+
+ /**
* Returns a newly created variable declaration statement.
*/
VariableDeclarationStatement variableDeclarationStatement(
« no previous file with comments | « pkg/analyzer/lib/dart/ast/ast.dart ('k') | pkg/analyzer/lib/dart/ast/resolution_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698