OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #ifndef VM_UNICODE_H_ | 5 #ifndef RUNTIME_VM_UNICODE_H_ |
6 #define VM_UNICODE_H_ | 6 #define RUNTIME_VM_UNICODE_H_ |
7 | 7 |
8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
9 #include "vm/globals.h" | 9 #include "vm/globals.h" |
10 | 10 |
11 namespace dart { | 11 namespace dart { |
12 | 12 |
13 class String; | 13 class String; |
14 | 14 |
15 class Utf : AllStatic { | 15 class Utf : AllStatic { |
16 public: | 16 public: |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 | 221 |
222 // Data for small code points with one mapping | 222 // Data for small code points with one mapping |
223 static const int16_t stage2_[]; | 223 static const int16_t stage2_[]; |
224 | 224 |
225 // Data for large code points or code points with both mappings. | 225 // Data for large code points or code points with both mappings. |
226 static const int32_t stage2_exception_[][2]; | 226 static const int32_t stage2_exception_[][2]; |
227 }; | 227 }; |
228 | 228 |
229 } // namespace dart | 229 } // namespace dart |
230 | 230 |
231 #endif // VM_UNICODE_H_ | 231 #endif // RUNTIME_VM_UNICODE_H_ |
OLD | NEW |