| Index: pkg/front_end/lib/src/fasta/parser/parser.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/parser/parser.dart b/pkg/front_end/lib/src/fasta/parser/parser.dart
|
| index 0c32649046d029954757cddbf44c97f3047e60d3..ecbe4830c05cf231681d0b393da6e1064ca9ef96 100644
|
| --- a/pkg/front_end/lib/src/fasta/parser/parser.dart
|
| +++ b/pkg/front_end/lib/src/fasta/parser/parser.dart
|
| @@ -422,9 +422,10 @@ class Parser {
|
| Token parseMixinApplication(Token token) {
|
| listener.beginMixinApplication(token);
|
| token = parseType(token);
|
| + Token withKeyword = token;
|
| token = expect('with', token);
|
| token = parseTypeList(token);
|
| - listener.endMixinApplication();
|
| + listener.endMixinApplication(withKeyword);
|
| return token;
|
| }
|
|
|
|
|