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

Side by Side Diff: lib/src/js/characters.dart

Issue 1879373004: Implement modular compilation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « lib/src/js/builder.dart ('k') | lib/src/js/js_ast.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
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.
4
5 const int $EOF = 0;
6 const int $STX = 2;
7 const int $BS = 8;
8 const int $TAB = 9;
9 const int $LF = 10;
10 const int $VTAB = 11;
11 const int $FF = 12;
12 const int $CR = 13;
13 const int $SPACE = 32;
14 const int $BANG = 33;
15 const int $DQ = 34;
16 const int $HASH = 35;
17 const int $$ = 36;
18 const int $PERCENT = 37;
19 const int $AMPERSAND = 38;
20 const int $SQ = 39;
21 const int $OPEN_PAREN = 40;
22 const int $CLOSE_PAREN = 41;
23 const int $STAR = 42;
24 const int $PLUS = 43;
25 const int $COMMA = 44;
26 const int $MINUS = 45;
27 const int $PERIOD = 46;
28 const int $SLASH = 47;
29 const int $0 = 48;
30 const int $1 = 49;
31 const int $2 = 50;
32 const int $3 = 51;
33 const int $4 = 52;
34 const int $5 = 53;
35 const int $6 = 54;
36 const int $7 = 55;
37 const int $8 = 56;
38 const int $9 = 57;
39 const int $COLON = 58;
40 const int $SEMICOLON = 59;
41 const int $LT = 60;
42 const int $EQ = 61;
43 const int $GT = 62;
44 const int $QUESTION = 63;
45 const int $AT = 64;
46 const int $A = 65;
47 const int $B = 66;
48 const int $C = 67;
49 const int $D = 68;
50 const int $E = 69;
51 const int $F = 70;
52 const int $G = 71;
53 const int $H = 72;
54 const int $I = 73;
55 const int $J = 74;
56 const int $K = 75;
57 const int $L = 76;
58 const int $M = 77;
59 const int $N = 78;
60 const int $O = 79;
61 const int $P = 80;
62 const int $Q = 81;
63 const int $R = 82;
64 const int $S = 83;
65 const int $T = 84;
66 const int $U = 85;
67 const int $V = 86;
68 const int $W = 87;
69 const int $X = 88;
70 const int $Y = 89;
71 const int $Z = 90;
72 const int $OPEN_SQUARE_BRACKET = 91;
73 const int $BACKSLASH = 92;
74 const int $CLOSE_SQUARE_BRACKET = 93;
75 const int $CARET = 94;
76 const int $_ = 95;
77 const int $BACKPING = 96;
78 const int $a = 97;
79 const int $b = 98;
80 const int $c = 99;
81 const int $d = 100;
82 const int $e = 101;
83 const int $f = 102;
84 const int $g = 103;
85 const int $h = 104;
86 const int $i = 105;
87 const int $j = 106;
88 const int $k = 107;
89 const int $l = 108;
90 const int $m = 109;
91 const int $n = 110;
92 const int $o = 111;
93 const int $p = 112;
94 const int $q = 113;
95 const int $r = 114;
96 const int $s = 115;
97 const int $t = 116;
98 const int $u = 117;
99 const int $v = 118;
100 const int $w = 119;
101 const int $x = 120;
102 const int $y = 121;
103 const int $z = 122;
104 const int $OPEN_CURLY_BRACKET = 123;
105 const int $BAR = 124;
106 const int $CLOSE_CURLY_BRACKET = 125;
107 const int $TILDE = 126;
108 const int $DEL = 127;
109 const int $NBSP = 160;
110 const int $LS = 0x2028;
111 const int $PS = 0x2029;
112
113 const int $FIRST_SURROGATE = 0xd800;
114 const int $LAST_SURROGATE = 0xdfff;
115 const int $LAST_CODE_POINT = 0x10ffff;
OLDNEW
« no previous file with comments | « lib/src/js/builder.dart ('k') | lib/src/js/js_ast.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698