| Index: pkg/analyzer/test/generated/parser_test.dart
|
| diff --git a/pkg/analyzer/test/generated/parser_test.dart b/pkg/analyzer/test/generated/parser_test.dart
|
| index 2cb7d2f302364cba71d000909f410dcfdb9a0c71..08f0f7fde7c72dbcda2ed43493608964b831ef2b 100644
|
| --- a/pkg/analyzer/test/generated/parser_test.dart
|
| +++ b/pkg/analyzer/test/generated/parser_test.dart
|
| @@ -8833,11 +8833,14 @@ class ParserTestHelpers {
|
| }
|
|
|
| /**
|
| - * The class `RecoveryParserTest` defines parser tests that test the parsing of invalid code
|
| - * sequences to ensure that the correct recovery steps are taken in the parser.
|
| + * The class `RecoveryParserTest` defines parser tests that test the parsing of
|
| + * invalid code sequences to ensure that the correct recovery steps are taken in
|
| + * the parser.
|
| */
|
| @reflectiveTest
|
| -class RecoveryParserTest extends ParserTestCase {
|
| +class RecoveryParserTest extends ParserTestCase with RecoveryParserTestMixin {}
|
| +
|
| +abstract class RecoveryParserTestMixin implements AbstractParserTestCase {
|
| void test_additiveExpression_missing_LHS() {
|
| BinaryExpression expression =
|
| parseExpression("+ y", [ParserErrorCode.MISSING_IDENTIFIER]);
|
|
|