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