| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/ScannerErrorCode.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/ScannerErrorCode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/ScannerErrorCode.java
|
| index 729c5c025653d21af494c0385a9e14ea5412966c..c7e7fb453a2aacf4e14f8d108a8874f151dd805a 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/ScannerErrorCode.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/ScannerErrorCode.java
|
| @@ -24,11 +24,12 @@ import com.google.dart.engine.error.ErrorType;
|
| * @coverage dart.engine.parser
|
| */
|
| public enum ScannerErrorCode implements ErrorCode {
|
| - ILLEGAL_CHARACTER("Illegal character %x"), //
|
| - MISSING_DIGIT("Decimal digit expected"), //
|
| - MISSING_HEX_DIGIT("Hexidecimal digit expected"), //
|
| - MISSING_QUOTE("Expected quote (' or \")"), //
|
| - UNTERMINATED_MULTI_LINE_COMMENT("Unterminated multi-line comment"), //
|
| + CHARACTER_EXPECTED_AFTER_SLASH("Character expected after slash"),
|
| + ILLEGAL_CHARACTER("Illegal character %x"),
|
| + MISSING_DIGIT("Decimal digit expected"),
|
| + MISSING_HEX_DIGIT("Hexidecimal digit expected"),
|
| + MISSING_QUOTE("Expected quote (' or \")"),
|
| + UNTERMINATED_MULTI_LINE_COMMENT("Unterminated multi-line comment"),
|
| UNTERMINATED_STRING_LITERAL("Unterminated string literal");
|
|
|
| /**
|
|
|