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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ | 383 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ |
384 V(_LocalMethodMirror, "_LocalMethodMirror") \ | 384 V(_LocalMethodMirror, "_LocalMethodMirror") \ |
385 V(_LocalVariableMirror, "_LocalVariableMirror") \ | 385 V(_LocalVariableMirror, "_LocalVariableMirror") \ |
386 V(_LocalParameterMirror, "_LocalParameterMirror") \ | 386 V(_LocalParameterMirror, "_LocalParameterMirror") \ |
387 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ | 387 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ |
388 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ | 388 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ |
389 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ | 389 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ |
390 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ | 390 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ |
391 V(_SourceLocation, "_SourceLocation") \ | 391 V(_SourceLocation, "_SourceLocation") \ |
392 V(hashCode, "get:hashCode") \ | 392 V(hashCode, "get:hashCode") \ |
| 393 V(identityHashCode, "identityHashCode") \ |
393 V(OptimizedOut, "<optimized out>") \ | 394 V(OptimizedOut, "<optimized out>") \ |
394 V(NotInitialized, "<not initialized>") \ | 395 V(NotInitialized, "<not initialized>") \ |
395 V(NotNamed, "<not named>") \ | 396 V(NotNamed, "<not named>") \ |
396 V(TempParam, ":temp_param") \ | 397 V(TempParam, ":temp_param") \ |
397 V(_UserTag, "_UserTag") \ | 398 V(_UserTag, "_UserTag") \ |
398 V(Default, "Default") \ | 399 V(Default, "Default") \ |
399 V(ClassID, "ClassID") \ | 400 V(ClassID, "ClassID") \ |
400 V(DartIsVM, "dart.isVM") \ | 401 V(DartIsVM, "dart.isVM") \ |
401 V(stack, ":stack") \ | 402 V(stack, ":stack") \ |
402 V(stack_pointer, ":stack_pointer") \ | 403 V(stack_pointer, ":stack_pointer") \ |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 friend class Serializer; | 696 friend class Serializer; |
696 friend class Deserializer; | 697 friend class Deserializer; |
697 friend class ApiMessageReader; | 698 friend class ApiMessageReader; |
698 | 699 |
699 DISALLOW_COPY_AND_ASSIGN(Symbols); | 700 DISALLOW_COPY_AND_ASSIGN(Symbols); |
700 }; | 701 }; |
701 | 702 |
702 } // namespace dart | 703 } // namespace dart |
703 | 704 |
704 #endif // RUNTIME_VM_SYMBOLS_H_ | 705 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |