| OLD | NEW |
| 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 Loading... |
| 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; |
| OLD | NEW |