| 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/growable_array.h" | 8 #include "vm/growable_array.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 325 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
| 326 V(DartCore, "dart:core") \ | 326 V(DartCore, "dart:core") \ |
| 327 V(DartCollection, "dart:collection") \ | 327 V(DartCollection, "dart:collection") \ |
| 328 V(DartDeveloper, "dart:developer") \ | 328 V(DartDeveloper, "dart:developer") \ |
| 329 V(DartInternal, "dart:_internal") \ | 329 V(DartInternal, "dart:_internal") \ |
| 330 V(DartIsolate, "dart:isolate") \ | 330 V(DartIsolate, "dart:isolate") \ |
| 331 V(DartMirrors, "dart:mirrors") \ | 331 V(DartMirrors, "dart:mirrors") \ |
| 332 V(DartTypedData, "dart:typed_data") \ | 332 V(DartTypedData, "dart:typed_data") \ |
| 333 V(DartVMService, "dart:_vmservice") \ | 333 V(DartVMService, "dart:_vmservice") \ |
| 334 V(DartIOLibName, "dart.io") \ | 334 V(DartIOLibName, "dart.io") \ |
| 335 V(DartVMProduct, "dart.vm.product") \ |
| 335 V(EvalSourceUri, "evaluate:source") \ | 336 V(EvalSourceUri, "evaluate:source") \ |
| 336 V(_Random, "_Random") \ | 337 V(_Random, "_Random") \ |
| 337 V(_state, "_state") \ | 338 V(_state, "_state") \ |
| 338 V(_A, "_A") \ | 339 V(_A, "_A") \ |
| 339 V(_stackTrace, "_stackTrace") \ | 340 V(_stackTrace, "_stackTrace") \ |
| 340 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ | 341 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ |
| 341 V(_LocalClassMirror, "_LocalClassMirror") \ | 342 V(_LocalClassMirror, "_LocalClassMirror") \ |
| 342 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ | 343 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ |
| 343 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ | 344 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ |
| 344 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ | 345 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 friend class SnapshotReader; | 674 friend class SnapshotReader; |
| 674 friend class SnapshotWriter; | 675 friend class SnapshotWriter; |
| 675 friend class ApiMessageReader; | 676 friend class ApiMessageReader; |
| 676 | 677 |
| 677 DISALLOW_COPY_AND_ASSIGN(Symbols); | 678 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 678 }; | 679 }; |
| 679 | 680 |
| 680 } // namespace dart | 681 } // namespace dart |
| 681 | 682 |
| 682 #endif // VM_SYMBOLS_H_ | 683 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |