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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 V(_LocalVariableMirror, "_LocalVariableMirror") \ | 379 V(_LocalVariableMirror, "_LocalVariableMirror") \ |
380 V(_LocalParameterMirror, "_LocalParameterMirror") \ | 380 V(_LocalParameterMirror, "_LocalParameterMirror") \ |
381 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ | 381 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ |
382 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ | 382 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ |
383 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ | 383 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ |
384 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ | 384 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ |
385 V(_SourceLocation, "_SourceLocation") \ | 385 V(_SourceLocation, "_SourceLocation") \ |
386 V(hashCode, "get:hashCode") \ | 386 V(hashCode, "get:hashCode") \ |
387 V(OptimizedOut, "<optimized out>") \ | 387 V(OptimizedOut, "<optimized out>") \ |
388 V(NotInitialized, "<not initialized>") \ | 388 V(NotInitialized, "<not initialized>") \ |
| 389 V(NotNamed, "<not named>") \ |
389 V(TempParam, ":temp_param") \ | 390 V(TempParam, ":temp_param") \ |
390 V(_UserTag, "_UserTag") \ | 391 V(_UserTag, "_UserTag") \ |
391 V(Default, "Default") \ | 392 V(Default, "Default") \ |
392 V(ClassID, "ClassID") \ | 393 V(ClassID, "ClassID") \ |
393 V(DartIsVM, "dart.isVM") \ | 394 V(DartIsVM, "dart.isVM") \ |
394 V(stack, ":stack") \ | 395 V(stack, ":stack") \ |
395 V(stack_pointer, ":stack_pointer") \ | 396 V(stack_pointer, ":stack_pointer") \ |
396 V(current_character, ":current_character") \ | 397 V(current_character, ":current_character") \ |
397 V(current_position, ":current_position") \ | 398 V(current_position, ":current_position") \ |
398 V(string_param_length, ":string_param_length") \ | 399 V(string_param_length, ":string_param_length") \ |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
682 friend class Serializer; | 683 friend class Serializer; |
683 friend class Deserializer; | 684 friend class Deserializer; |
684 friend class ApiMessageReader; | 685 friend class ApiMessageReader; |
685 | 686 |
686 DISALLOW_COPY_AND_ASSIGN(Symbols); | 687 DISALLOW_COPY_AND_ASSIGN(Symbols); |
687 }; | 688 }; |
688 | 689 |
689 } // namespace dart | 690 } // namespace dart |
690 | 691 |
691 #endif // RUNTIME_VM_SYMBOLS_H_ | 692 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |