Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/ScannerErrorCode.java

Issue 18117007: Report CHARACTER_EXPECTED_AFTER_SLASH (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");
/**

Powered by Google App Engine
This is Rietveld 408576698