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

Side by Side Diff: dart/frog/leg/scanner/characters.dart

Issue 8805008: Various scanner fixes: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased and update language.status Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/frog/leg/scanner/byte_array_scanner.dart ('k') | dart/frog/leg/scanner/keyword.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 final int $EOF = 0; 5 final int $EOF = 0;
6 final int $STX = 2;
6 final int $TAB = 9; 7 final int $TAB = 9;
7 final int $LF = 10; 8 final int $LF = 10;
8 final int $CR = 13; 9 final int $CR = 13;
9 final int $SPACE = 32; 10 final int $SPACE = 32;
10 final int $BANG = 33; 11 final int $BANG = 33;
11 final int $DQ = 34; 12 final int $DQ = 34;
12 final int $HASH = 35; 13 final int $HASH = 35;
13 final int $$ = 36; 14 final int $$ = 36;
14 final int $PERCENT = 37; 15 final int $PERCENT = 37;
15 final int $AMPERSAND = 38; 16 final int $AMPERSAND = 38;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 final int $v = 118; 96 final int $v = 118;
96 final int $w = 119; 97 final int $w = 119;
97 final int $x = 120; 98 final int $x = 120;
98 final int $y = 121; 99 final int $y = 121;
99 final int $z = 122; 100 final int $z = 122;
100 final int $OPEN_CURLY_BRACKET = 123; 101 final int $OPEN_CURLY_BRACKET = 123;
101 final int $BAR = 124; 102 final int $BAR = 124;
102 final int $CLOSE_CURLY_BRACKET = 125; 103 final int $CLOSE_CURLY_BRACKET = 125;
103 final int $TILDE = 126; 104 final int $TILDE = 126;
104 final int $DEL = 127; 105 final int $DEL = 127;
OLDNEW
« no previous file with comments | « dart/frog/leg/scanner/byte_array_scanner.dart ('k') | dart/frog/leg/scanner/keyword.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698