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_SYMBOLS_H_ | 5 #ifndef VM_SYMBOLS_H_ |
6 #define VM_SYMBOLS_H_ | 6 #define VM_SYMBOLS_H_ |
7 | 7 |
8 #include "vm/object.h" | 8 #include "vm/object.h" |
9 #include "vm/snapshot_ids.h" | 9 #include "vm/snapshot_ids.h" |
10 | 10 |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 V(PrivateSetterPrefix, "set:_") \ | 231 V(PrivateSetterPrefix, "set:_") \ |
232 V(_New, "_new") \ | 232 V(_New, "_new") \ |
233 V(DartScheme, "dart:") \ | 233 V(DartScheme, "dart:") \ |
234 V(DartSchemePrivate, "dart:_") \ | 234 V(DartSchemePrivate, "dart:_") \ |
235 V(DartCore, "dart:core") \ | 235 V(DartCore, "dart:core") \ |
236 V(DartCollection, "dart:collection") \ | 236 V(DartCollection, "dart:collection") \ |
237 V(DartCollectionDev, "dart:_collection-dev") \ | 237 V(DartCollectionDev, "dart:_collection-dev") \ |
238 V(DartMath, "dart:math") \ | 238 V(DartMath, "dart:math") \ |
239 V(DartIsolate, "dart:isolate") \ | 239 V(DartIsolate, "dart:isolate") \ |
240 V(DartMirrors, "dart:mirrors") \ | 240 V(DartMirrors, "dart:mirrors") \ |
241 V(DartTypedData, "dart:typeddata") \ | 241 V(DartTypedData, "dart:typed_data") \ |
242 V(DartNativeWrappers, "dart:nativewrappers") \ | 242 V(DartNativeWrappers, "dart:nativewrappers") \ |
243 V(DartAsync, "dart:async") \ | 243 V(DartAsync, "dart:async") \ |
244 V(DartUri, "dart:uri") \ | 244 V(DartUri, "dart:uri") \ |
245 V(DartUtf, "dart:utf") \ | 245 V(DartUtf, "dart:utf") \ |
246 V(DartCrypto, "dart:crypto") \ | 246 V(DartCrypto, "dart:crypto") \ |
247 V(DartJson, "dart:json") \ | 247 V(DartJson, "dart:json") \ |
248 | 248 |
249 | 249 |
250 // Contains a list of frequently used strings in a canonicalized form. This | 250 // Contains a list of frequently used strings in a canonicalized form. This |
251 // list is kept in the vm_isolate in order to share the copy across isolates | 251 // list is kept in the vm_isolate in order to share the copy across isolates |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 friend class SnapshotReader; | 437 friend class SnapshotReader; |
438 friend class SnapshotWriter; | 438 friend class SnapshotWriter; |
439 friend class ApiMessageReader; | 439 friend class ApiMessageReader; |
440 | 440 |
441 DISALLOW_COPY_AND_ASSIGN(Symbols); | 441 DISALLOW_COPY_AND_ASSIGN(Symbols); |
442 }; | 442 }; |
443 | 443 |
444 } // namespace dart | 444 } // namespace dart |
445 | 445 |
446 #endif // VM_SYMBOLS_H_ | 446 #endif // VM_SYMBOLS_H_ |
OLD | NEW |