| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 V(_New, "_new") \ | 204 V(_New, "_new") \ |
| 205 V(DartScheme, "dart:") \ | 205 V(DartScheme, "dart:") \ |
| 206 V(DartSchemePrivate, "dart:_") \ | 206 V(DartSchemePrivate, "dart:_") \ |
| 207 V(DartCore, "dart:core") \ | 207 V(DartCore, "dart:core") \ |
| 208 V(DartCollection, "dart:collection") \ | 208 V(DartCollection, "dart:collection") \ |
| 209 V(DartCollectionDev, "dart:_collection-dev") \ | 209 V(DartCollectionDev, "dart:_collection-dev") \ |
| 210 V(DartMath, "dart:math") \ | 210 V(DartMath, "dart:math") \ |
| 211 V(DartIsolate, "dart:isolate") \ | 211 V(DartIsolate, "dart:isolate") \ |
| 212 V(DartMirrors, "dart:mirrors") \ | 212 V(DartMirrors, "dart:mirrors") \ |
| 213 V(DartScalarlist, "dart:scalarlist") \ | 213 V(DartScalarlist, "dart:scalarlist") \ |
| 214 V(DartTypedData, "dart:typeddata") \ |
| 214 V(DartNativeWrappers, "dart:nativewrappers") \ | 215 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 215 V(DartAsync, "dart:async") \ | 216 V(DartAsync, "dart:async") \ |
| 216 V(DartUri, "dart:uri") \ | 217 V(DartUri, "dart:uri") \ |
| 217 V(DartUtf, "dart:utf") \ | 218 V(DartUtf, "dart:utf") \ |
| 218 V(DartCrypto, "dart:crypto") \ | 219 V(DartCrypto, "dart:crypto") \ |
| 219 V(DartJson, "dart:json") \ | 220 V(DartJson, "dart:json") \ |
| 220 | 221 |
| 221 | 222 |
| 222 // Contains a list of frequently used strings in a canonicalized form. This | 223 // Contains a list of frequently used strings in a canonicalized form. This |
| 223 // list is kept in the vm_isolate in order to share the copy across isolates | 224 // list is kept in the vm_isolate in order to share the copy across isolates |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 friend class SnapshotReader; | 407 friend class SnapshotReader; |
| 407 friend class SnapshotWriter; | 408 friend class SnapshotWriter; |
| 408 friend class ApiMessageReader; | 409 friend class ApiMessageReader; |
| 409 | 410 |
| 410 DISALLOW_COPY_AND_ASSIGN(Symbols); | 411 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 411 }; | 412 }; |
| 412 | 413 |
| 413 } // namespace dart | 414 } // namespace dart |
| 414 | 415 |
| 415 #endif // VM_SYMBOLS_H_ | 416 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |