| 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 4ed742ff963a3f9ae994c6c55ea6d93dcea39fbf..48129a008a38acfa662c18cb66c6a6f68c808783 100644
|
| --- a/pkg/front_end/lib/src/fasta/parser/listener.dart
|
| +++ b/pkg/front_end/lib/src/fasta/parser/listener.dart
|
| @@ -172,8 +172,8 @@ class Listener {
|
|
|
| void beginFormalParameter(Token token) {}
|
|
|
| - void endFormalParameter(
|
| - Token covariantKeyword, Token thisKeyword, FormalParameterType kind) {
|
| + void endFormalParameter(Token covariantKeyword, Token thisKeyword,
|
| + Token nameToken, FormalParameterType kind) {
|
| logEvent("FormalParameter");
|
| }
|
|
|
| @@ -269,7 +269,7 @@ class Listener {
|
|
|
| void beginFunctionName(Token token) {}
|
|
|
| - void endFunctionName(Token token) {
|
| + void endFunctionName(Token beginToken, Token token) {
|
| logEvent("FunctionName");
|
| }
|
|
|
| @@ -757,7 +757,7 @@ class Listener {
|
| /// - Formal parameters
|
| /// - Async marker
|
| /// - Body
|
| - void endUnnamedFunction(Token token) {
|
| + void endUnnamedFunction(Token beginToken, Token token) {
|
| logEvent("UnnamedFunction");
|
| }
|
|
|
|
|