Index: pkg/front_end/lib/src/fasta/parser/listener.dart |
diff --git a/pkg/front_end/lib/src/fasta/parser/listener.dart b/pkg/front_end/lib/src/fasta/parser/listener.dart |
index 48eae4237badf88de4571653ccddff86d8253ee6..503f00f7c88cbd4e4d8ad6d1aa996d2a82011096 100644 |
--- a/pkg/front_end/lib/src/fasta/parser/listener.dart |
+++ b/pkg/front_end/lib/src/fasta/parser/listener.dart |
@@ -822,17 +822,15 @@ class Listener { |
logEvent("ConstExpression"); |
} |
+ /// Handle the start of a function typed formal parameter. Substructures: |
+ /// - type variables |
void beginFunctionTypedFormalParameter(Token token) {} |
/// Handle the end of a function typed formal parameter. Substructures: |
- /// - metadata |
- /// - modifiers |
+ /// - type variables |
/// - return type |
- /// - parameter name (simple identifier) |
- /// - type parameters |
/// - formal parameters |
- void endFunctionTypedFormalParameter( |
- Token thisKeyword, FormalParameterType kind) { |
+ void endFunctionTypedFormalParameter() { |
logEvent("FunctionTypedFormalParameter"); |
} |
@@ -1054,7 +1052,7 @@ class Listener { |
return token; |
} |
- /// Matches a generic comment type parameters or type arguments and injects |
+ /// Matches a generic comment type variables or type arguments and injects |
/// them into the token stream before the given [token]. |
Token injectGenericCommentTypeList(Token token) { |
return token; |