| 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 part of scanner; | 5 part of scanner; |
| 6 | 6 |
| 7 const int EOF_TOKEN = 0; | 7 const int EOF_TOKEN = 0; |
| 8 | 8 |
| 9 const int KEYWORD_TOKEN = $k; | 9 const int KEYWORD_TOKEN = $k; |
| 10 const int IDENTIFIER_TOKEN = $a; | 10 const int IDENTIFIER_TOKEN = $a; |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 | 713 |
| 714 const PrecedenceInfo STRING_INTERPOLATION_IDENTIFIER_INFO = | 714 const PrecedenceInfo STRING_INTERPOLATION_IDENTIFIER_INFO = |
| 715 const PrecedenceInfo('\$', 0, | 715 const PrecedenceInfo('\$', 0, |
| 716 STRING_INTERPOLATION_IDENTIFIER_TOKEN); | 716 STRING_INTERPOLATION_IDENTIFIER_TOKEN); |
| 717 | 717 |
| 718 const PrecedenceInfo HEXADECIMAL_INFO = | 718 const PrecedenceInfo HEXADECIMAL_INFO = |
| 719 const PrecedenceInfo('hexadecimal', 0, HEXADECIMAL_TOKEN); | 719 const PrecedenceInfo('hexadecimal', 0, HEXADECIMAL_TOKEN); |
| 720 | 720 |
| 721 const PrecedenceInfo COMMENT_INFO = | 721 const PrecedenceInfo COMMENT_INFO = |
| 722 const PrecedenceInfo('comment', 0, COMMENT_TOKEN); | 722 const PrecedenceInfo('comment', 0, COMMENT_TOKEN); |
| OLD | NEW |