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

Side by Side Diff: pkg/dev_compiler/lib/src/js_ast/characters.dart

Issue 2752163002: Format all dart dev compiler files (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 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 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 const int $EOF = 0; 5 const int $EOF = 0;
6 const int $STX = 2; 6 const int $STX = 2;
7 const int $BS = 8; 7 const int $BS = 8;
8 const int $TAB = 9; 8 const int $TAB = 9;
9 const int $LF = 10; 9 const int $LF = 10;
10 const int $VTAB = 11; 10 const int $VTAB = 11;
11 const int $FF = 12; 11 const int $FF = 12;
12 const int $CR = 13; 12 const int $CR = 13;
13 const int $SPACE = 32; 13 const int $SPACE = 32;
14 const int $BANG = 33; 14 const int $BANG = 33;
15 const int $DQ = 34; 15 const int $DQ = 34;
16 const int $HASH = 35; 16 const int $HASH = 35;
17 const int $$ = 36; 17 const int $$ = 36;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 const int $CLOSE_CURLY_BRACKET = 125; 106 const int $CLOSE_CURLY_BRACKET = 125;
107 const int $TILDE = 126; 107 const int $TILDE = 126;
108 const int $DEL = 127; 108 const int $DEL = 127;
109 const int $NBSP = 160; 109 const int $NBSP = 160;
110 const int $LS = 0x2028; 110 const int $LS = 0x2028;
111 const int $PS = 0x2029; 111 const int $PS = 0x2029;
112 112
113 const int $FIRST_SURROGATE = 0xd800; 113 const int $FIRST_SURROGATE = 0xd800;
114 const int $LAST_SURROGATE = 0xdfff; 114 const int $LAST_SURROGATE = 0xdfff;
115 const int $LAST_CODE_POINT = 0x10ffff; 115 const int $LAST_CODE_POINT = 0x10ffff;
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/src/js_ast/builder.dart ('k') | pkg/dev_compiler/lib/src/js_ast/js_types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698