| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 V(InitPrefix, "init:") \ | 266 V(InitPrefix, "init:") \ |
| 267 V(PrivateGetterPrefix, "get:_") \ | 267 V(PrivateGetterPrefix, "get:_") \ |
| 268 V(PrivateSetterPrefix, "set:_") \ | 268 V(PrivateSetterPrefix, "set:_") \ |
| 269 V(_New, "_new") \ | 269 V(_New, "_new") \ |
| 270 V(DartScheme, "dart:") \ | 270 V(DartScheme, "dart:") \ |
| 271 V(DartSchemePrivate, "dart:_") \ | 271 V(DartSchemePrivate, "dart:_") \ |
| 272 V(DartNativeWrappers, "dart:nativewrappers") \ | 272 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 273 V(DartAsync, "dart:async") \ | 273 V(DartAsync, "dart:async") \ |
| 274 V(DartCore, "dart:core") \ | 274 V(DartCore, "dart:core") \ |
| 275 V(DartCollection, "dart:collection") \ | 275 V(DartCollection, "dart:collection") \ |
| 276 V(DartCollectionDev, "dart:_collection-dev") \ | |
| 277 V(DartConvert, "dart:convert") \ | 276 V(DartConvert, "dart:convert") \ |
| 277 V(DartInternal, "dart:_internal") \ |
| 278 V(DartIsolate, "dart:isolate") \ | 278 V(DartIsolate, "dart:isolate") \ |
| 279 V(DartMath, "dart:math") \ | 279 V(DartMath, "dart:math") \ |
| 280 V(DartMirrors, "dart:mirrors") \ | 280 V(DartMirrors, "dart:mirrors") \ |
| 281 V(DartTypedData, "dart:typed_data") \ | 281 V(DartTypedData, "dart:typed_data") \ |
| 282 V(DartVMService, "dart:vmservice") \ | 282 V(DartVMService, "dart:vmservice") \ |
| 283 V(_Random, "_Random") \ | 283 V(_Random, "_Random") \ |
| 284 V(_state, "_state") \ | 284 V(_state, "_state") \ |
| 285 V(_A, "_A") \ | 285 V(_A, "_A") \ |
| 286 V(_stackTrace, "_stackTrace") \ | 286 V(_stackTrace, "_stackTrace") \ |
| 287 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ | 287 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 friend class SnapshotReader; | 511 friend class SnapshotReader; |
| 512 friend class SnapshotWriter; | 512 friend class SnapshotWriter; |
| 513 friend class ApiMessageReader; | 513 friend class ApiMessageReader; |
| 514 | 514 |
| 515 DISALLOW_COPY_AND_ASSIGN(Symbols); | 515 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 516 }; | 516 }; |
| 517 | 517 |
| 518 } // namespace dart | 518 } // namespace dart |
| 519 | 519 |
| 520 #endif // VM_SYMBOLS_H_ | 520 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |