OLD | NEW |
1 library constants; | 1 library constants; |
2 | 2 |
3 import 'utils.dart'; | 3 import 'utils.dart'; |
4 | 4 |
5 // TODO(jmesserly): fix up the const lists. For the bigger ones, we need faster | 5 // TODO(jmesserly): fix up the const lists. For the bigger ones, we need faster |
6 // lookup than linear search "contains". In the Python code they were | 6 // lookup than linear search "contains". In the Python code they were |
7 // frozensets. | 7 // frozensets. |
8 | 8 |
9 final String EOF = null; | 9 final String EOF = null; |
10 | 10 |
(...skipping 3062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3073 'windows1252': 'cp1252', | 3073 'windows1252': 'cp1252', |
3074 'windows1253': 'cp1253', | 3074 'windows1253': 'cp1253', |
3075 'windows1254': 'cp1254', | 3075 'windows1254': 'cp1254', |
3076 'windows1255': 'cp1255', | 3076 'windows1255': 'cp1255', |
3077 'windows1256': 'cp1256', | 3077 'windows1256': 'cp1256', |
3078 'windows1257': 'cp1257', | 3078 'windows1257': 'cp1257', |
3079 'windows1258': 'cp1258', | 3079 'windows1258': 'cp1258', |
3080 'windows936': 'gbk', | 3080 'windows936': 'gbk', |
3081 'x-x-big5': 'big5' | 3081 'x-x-big5': 'big5' |
3082 }; | 3082 }; |
OLD | NEW |