| Index: pkg/fasta/lib/src/source/outline_builder.dart
|
| diff --git a/pkg/fasta/lib/src/source/outline_builder.dart b/pkg/fasta/lib/src/source/outline_builder.dart
|
| index 7a51e55bc964d1f6f8dad0d835f0aee3b0cba39a..45beda7a1fe7fdbe43e4e0b15133c985b25f6f31 100644
|
| --- a/pkg/fasta/lib/src/source/outline_builder.dart
|
| +++ b/pkg/fasta/lib/src/source/outline_builder.dart
|
| @@ -203,8 +203,8 @@ class OutlineBuilder extends UnhandledListener {
|
| push(MethodBody.Abstract);
|
| }
|
|
|
| - void skippedFunctionBody(Token token) {
|
| - debugEvent("skippedFunctionBody");
|
| + void handleFunctionBodySkipped(Token token) {
|
| + debugEvent("handleFunctionBodySkipped");
|
| push(MethodBody.Regular);
|
| }
|
|
|
| @@ -297,7 +297,7 @@ class OutlineBuilder extends UnhandledListener {
|
| // Ignored for now.
|
| }
|
|
|
| - void handleFunctionTypedFormalParameter(Token token) {
|
| + void endFunctionTypedFormalParameter(Token token) {
|
| debugEvent("FunctionTypedFormalParameter");
|
| pop(); // Function type parameters.
|
| pop(); // Type variables.
|
| @@ -432,10 +432,9 @@ class OutlineBuilder extends UnhandledListener {
|
| push(MethodBody.RedirectingFactoryBody);
|
| }
|
|
|
| - void endInitializer(Token assignmentOperator) {
|
| - debugEvent("Initializer");
|
| - // This is a variable initializer and it's ignored for now. May also be
|
| - // constructor initializer.
|
| + void endFieldInitializer(Token assignmentOperator) {
|
| + debugEvent("FieldInitializer");
|
| + // Ignoring field initializers for now.
|
| }
|
|
|
| void endInitializers(int count, Token beginToken, Token endToken) {
|
|
|