| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 V(_LocalParameterMirror, "_LocalParameterMirror") \ | 334 V(_LocalParameterMirror, "_LocalParameterMirror") \ |
| 335 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ | 335 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ |
| 336 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ | 336 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ |
| 337 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ | 337 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ |
| 338 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ | 338 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ |
| 339 V(_SourceLocation, "_SourceLocation") \ | 339 V(_SourceLocation, "_SourceLocation") \ |
| 340 V(hashCode, "get:hashCode") \ | 340 V(hashCode, "get:hashCode") \ |
| 341 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ | 341 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ |
| 342 V(OptimizedOut, "<optimized out>") \ | 342 V(OptimizedOut, "<optimized out>") \ |
| 343 V(NotInitialized, "<not initialized>") \ | 343 V(NotInitialized, "<not initialized>") \ |
| 344 V(AllocationStubFor, "Allocation stub for ") \ | 344 V(AllocationStubFor, "[Stub] Allocate ") \ |
| 345 V(TempParam, ":temp_param") \ | 345 V(TempParam, ":temp_param") \ |
| 346 V(_UserTag, "_UserTag") \ | 346 V(_UserTag, "_UserTag") \ |
| 347 V(Default, "Default") \ | 347 V(Default, "Default") \ |
| 348 V(StubPrefix, "[Stub] ") \ | 348 V(StubPrefix, "[Stub] ") \ |
| 349 V(ClassID, "ClassID") \ | 349 V(ClassID, "ClassID") \ |
| 350 V(DartIsVM, "dart.isVM") \ | 350 V(DartIsVM, "dart.isVM") \ |
| 351 V(stack, ":stack") \ | 351 V(stack, ":stack") \ |
| 352 V(stack_pointer, ":stack_pointer") \ | 352 V(stack_pointer, ":stack_pointer") \ |
| 353 V(current_character, ":current_character") \ | 353 V(current_character, ":current_character") \ |
| 354 V(current_position, ":current_position") \ | 354 V(current_position, ":current_position") \ |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 friend class SnapshotReader; | 584 friend class SnapshotReader; |
| 585 friend class SnapshotWriter; | 585 friend class SnapshotWriter; |
| 586 friend class ApiMessageReader; | 586 friend class ApiMessageReader; |
| 587 | 587 |
| 588 DISALLOW_COPY_AND_ASSIGN(Symbols); | 588 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 589 }; | 589 }; |
| 590 | 590 |
| 591 } // namespace dart | 591 } // namespace dart |
| 592 | 592 |
| 593 #endif // VM_SYMBOLS_H_ | 593 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |