| Index: sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart b/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart
|
| index 75fe874ea381f95ba55d49babdcb05a0ed8a8737..7e6a81bc254165d14ec270d58772dae5dc252bd6 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart
|
| @@ -124,7 +124,7 @@ class MemberListener extends NodeListener {
|
| ElementKind kind = ElementKind.FUNCTION;
|
| if (isConstructor) {
|
| if (getOrSet != null) {
|
| - recoverableError('illegal modifier', token: getOrSet);
|
| + recoverableError(getOrSet, 'illegal modifier');
|
| }
|
| kind = ElementKind.GENERATIVE_CONSTRUCTOR;
|
| } else if (getOrSet != null) {
|
|
|