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

Unified Diff: frog/leg/util/characters.dart

Issue 9293006: Refactoring of string literals. Implement static string addition. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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: frog/leg/util/characters.dart
diff --git a/frog/leg/util/characters.dart b/frog/leg/util/characters.dart
index bd466aa1100472ebf8ea8c6a022adab4ab6fd6e4..ab2cf6e35332d2257b1ecc74db43e2348829bbc4 100644
--- a/frog/leg/util/characters.dart
+++ b/frog/leg/util/characters.dart
@@ -6,8 +6,11 @@
final int $EOF = 0;
final int $STX = 2;
+final int $BS = 8;
final int $TAB = 9;
final int $LF = 10;
+final int $VTAB = 11;
+final int $FF = 12;
final int $CR = 13;
final int $SPACE = 32;
final int $BANG = 33;

Powered by Google App Engine
This is Rietveld 408576698