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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 V(DartTypedData, "dart:typed_data") \ | 289 V(DartTypedData, "dart:typed_data") \ |
290 V(DartVMService, "dart:vmservice") \ | 290 V(DartVMService, "dart:vmservice") \ |
291 V(_Random, "_Random") \ | 291 V(_Random, "_Random") \ |
292 V(_state, "_state") \ | 292 V(_state, "_state") \ |
293 V(_A, "_A") \ | 293 V(_A, "_A") \ |
294 V(_stackTrace, "_stackTrace") \ | 294 V(_stackTrace, "_stackTrace") \ |
295 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ | 295 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ |
296 V(_LocalClassMirror, "_LocalClassMirror") \ | 296 V(_LocalClassMirror, "_LocalClassMirror") \ |
297 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ | 297 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ |
298 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ | 298 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ |
299 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ | |
300 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ | |
301 V(_LocalMethodMirror, "_LocalMethodMirror") \ | 299 V(_LocalMethodMirror, "_LocalMethodMirror") \ |
302 V(_LocalVariableMirror, "_LocalVariableMirror") \ | 300 V(_LocalVariableMirror, "_LocalVariableMirror") \ |
303 V(_LocalParameterMirror, "_LocalParameterMirror") \ | 301 V(_LocalParameterMirror, "_LocalParameterMirror") \ |
304 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ | 302 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ |
305 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ | 303 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ |
306 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ | 304 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ |
307 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ | 305 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ |
308 V(hashCode, "get:hashCode") \ | 306 V(hashCode, "get:hashCode") \ |
309 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ | 307 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ |
310 V(OptimizedOut, "<optimized out>") \ | 308 V(OptimizedOut, "<optimized out>") \ |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 friend class SnapshotReader; | 520 friend class SnapshotReader; |
523 friend class SnapshotWriter; | 521 friend class SnapshotWriter; |
524 friend class ApiMessageReader; | 522 friend class ApiMessageReader; |
525 | 523 |
526 DISALLOW_COPY_AND_ASSIGN(Symbols); | 524 DISALLOW_COPY_AND_ASSIGN(Symbols); |
527 }; | 525 }; |
528 | 526 |
529 } // namespace dart | 527 } // namespace dart |
530 | 528 |
531 #endif // VM_SYMBOLS_H_ | 529 #endif // VM_SYMBOLS_H_ |
OLD | NEW |