| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ | 345 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ |
| 346 V(_LocalMethodMirror, "_LocalMethodMirror") \ | 346 V(_LocalMethodMirror, "_LocalMethodMirror") \ |
| 347 V(_LocalVariableMirror, "_LocalVariableMirror") \ | 347 V(_LocalVariableMirror, "_LocalVariableMirror") \ |
| 348 V(_LocalParameterMirror, "_LocalParameterMirror") \ | 348 V(_LocalParameterMirror, "_LocalParameterMirror") \ |
| 349 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ | 349 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ |
| 350 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ | 350 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ |
| 351 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ | 351 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ |
| 352 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ | 352 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ |
| 353 V(_SourceLocation, "_SourceLocation") \ | 353 V(_SourceLocation, "_SourceLocation") \ |
| 354 V(hashCode, "get:hashCode") \ | 354 V(hashCode, "get:hashCode") \ |
| 355 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ | |
| 356 V(OptimizedOut, "<optimized out>") \ | 355 V(OptimizedOut, "<optimized out>") \ |
| 357 V(NotInitialized, "<not initialized>") \ | 356 V(NotInitialized, "<not initialized>") \ |
| 358 V(AllocationStubFor, "[Stub] Allocate ") \ | 357 V(AllocationStubFor, "[Stub] Allocate ") \ |
| 359 V(TempParam, ":temp_param") \ | 358 V(TempParam, ":temp_param") \ |
| 360 V(_UserTag, "_UserTag") \ | 359 V(_UserTag, "_UserTag") \ |
| 361 V(Default, "Default") \ | 360 V(Default, "Default") \ |
| 362 V(StubPrefix, "[Stub] ") \ | 361 V(StubPrefix, "[Stub] ") \ |
| 363 V(ClassID, "ClassID") \ | 362 V(ClassID, "ClassID") \ |
| 364 V(DartIsVM, "dart.isVM") \ | 363 V(DartIsVM, "dart.isVM") \ |
| 365 V(stack, ":stack") \ | 364 V(stack, ":stack") \ |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 friend class SnapshotReader; | 677 friend class SnapshotReader; |
| 679 friend class SnapshotWriter; | 678 friend class SnapshotWriter; |
| 680 friend class ApiMessageReader; | 679 friend class ApiMessageReader; |
| 681 | 680 |
| 682 DISALLOW_COPY_AND_ASSIGN(Symbols); | 681 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 683 }; | 682 }; |
| 684 | 683 |
| 685 } // namespace dart | 684 } // namespace dart |
| 686 | 685 |
| 687 #endif // VM_SYMBOLS_H_ | 686 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |