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

Side by Side Diff: pkg/compiler/lib/src/tokens/token.dart

Issue 1313073007: Move parser and token related libraries into their own subfolder. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix unittests and try Created 5 years, 3 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 | « pkg/compiler/lib/src/tokens/keyword.dart ('k') | pkg/compiler/lib/src/tokens/token_map.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 library dart2js.tokens; 5 library dart2js.tokens;
6 6
7 import 'dart:convert' show 7 import 'dart:convert' show
8 UTF8; 8 UTF8;
9 import 'dart:collection' show 9 import 'dart:collection' show
10 HashSet; 10 HashSet;
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 747
748 const PrecedenceInfo STRING_INTERPOLATION_IDENTIFIER_INFO = 748 const PrecedenceInfo STRING_INTERPOLATION_IDENTIFIER_INFO =
749 const PrecedenceInfo('\$', 0, 749 const PrecedenceInfo('\$', 0,
750 STRING_INTERPOLATION_IDENTIFIER_TOKEN); 750 STRING_INTERPOLATION_IDENTIFIER_TOKEN);
751 751
752 const PrecedenceInfo HEXADECIMAL_INFO = 752 const PrecedenceInfo HEXADECIMAL_INFO =
753 const PrecedenceInfo('hexadecimal', 0, HEXADECIMAL_TOKEN); 753 const PrecedenceInfo('hexadecimal', 0, HEXADECIMAL_TOKEN);
754 754
755 const PrecedenceInfo COMMENT_INFO = 755 const PrecedenceInfo COMMENT_INFO =
756 const PrecedenceInfo('comment', 0, COMMENT_TOKEN); 756 const PrecedenceInfo('comment', 0, COMMENT_TOKEN);
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/tokens/keyword.dart ('k') | pkg/compiler/lib/src/tokens/token_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698