| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/RecoveryParserTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/RecoveryParserTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/RecoveryParserTest.java
|
| index 41a0be85df150b8af2098770a41bb4aaf42611ce..ef4bb858a0ff237edc1d813caab4c654c5a4e2cf 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/RecoveryParserTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/RecoveryParserTest.java
|
| @@ -379,7 +379,8 @@ public class RecoveryParserTest extends ParserTestCase {
|
| BinaryExpression expression = parseExpression(
|
| "super == ==",
|
| ParserErrorCode.MISSING_IDENTIFIER,
|
| - ParserErrorCode.MISSING_IDENTIFIER);
|
| + ParserErrorCode.MISSING_IDENTIFIER,
|
| + ParserErrorCode.EQUALITY_CANNOT_BE_EQUALITY_OPERAND);
|
| assertInstanceOf(BinaryExpression.class, expression.getLeftOperand());
|
| }
|
|
|
| @@ -561,7 +562,8 @@ public class RecoveryParserTest extends ParserTestCase {
|
| BinaryExpression expression = parseExpression(
|
| "super == ==",
|
| ParserErrorCode.MISSING_IDENTIFIER,
|
| - ParserErrorCode.MISSING_IDENTIFIER);
|
| + ParserErrorCode.MISSING_IDENTIFIER,
|
| + ParserErrorCode.EQUALITY_CANNOT_BE_EQUALITY_OPERAND);
|
| assertInstanceOf(BinaryExpression.class, expression.getLeftOperand());
|
| }
|
|
|
|
|