| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/parser/Parser.java
|
| ===================================================================
|
| --- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/parser/Parser.java (revision 24589)
|
| +++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/parser/Parser.java (working copy)
|
| @@ -943,8 +943,7 @@
|
| private ArgumentDefinitionTest parseArgumentDefinitionTest() {
|
| Token question = expect(TokenType.QUESTION);
|
| SimpleIdentifier identifier = parseSimpleIdentifier();
|
| - // TODO(brianwilkerson) Enable this warning when the use of this operator has been removed
|
| - // reportError(ParserErrorCode.DEPRECATED_ARGUMENT_DEFINITION_TEST, question);
|
| + reportError(ParserErrorCode.DEPRECATED_ARGUMENT_DEFINITION_TEST, question);
|
| return new ArgumentDefinitionTest(question, identifier);
|
| }
|
|
|
|
|