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