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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 V(_LocalVariableMirror, "_LocalVariableMirror") \ | 360 V(_LocalVariableMirror, "_LocalVariableMirror") \ |
361 V(_LocalParameterMirror, "_LocalParameterMirror") \ | 361 V(_LocalParameterMirror, "_LocalParameterMirror") \ |
362 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ | 362 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ |
363 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ | 363 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ |
364 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ | 364 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ |
365 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ | 365 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ |
366 V(_SourceLocation, "_SourceLocation") \ | 366 V(_SourceLocation, "_SourceLocation") \ |
367 V(hashCode, "get:hashCode") \ | 367 V(hashCode, "get:hashCode") \ |
368 V(OptimizedOut, "<optimized out>") \ | 368 V(OptimizedOut, "<optimized out>") \ |
369 V(NotInitialized, "<not initialized>") \ | 369 V(NotInitialized, "<not initialized>") \ |
370 V(AllocationStubFor, "[Stub] Allocate ") \ | |
371 V(TempParam, ":temp_param") \ | 370 V(TempParam, ":temp_param") \ |
372 V(_UserTag, "_UserTag") \ | 371 V(_UserTag, "_UserTag") \ |
373 V(Default, "Default") \ | 372 V(Default, "Default") \ |
374 V(StubPrefix, "[Stub] ") \ | |
375 V(ClassID, "ClassID") \ | 373 V(ClassID, "ClassID") \ |
376 V(DartIsVM, "dart.isVM") \ | 374 V(DartIsVM, "dart.isVM") \ |
377 V(stack, ":stack") \ | 375 V(stack, ":stack") \ |
378 V(stack_pointer, ":stack_pointer") \ | 376 V(stack_pointer, ":stack_pointer") \ |
379 V(current_character, ":current_character") \ | 377 V(current_character, ":current_character") \ |
380 V(current_position, ":current_position") \ | 378 V(current_position, ":current_position") \ |
381 V(string_param_length, ":string_param_length") \ | 379 V(string_param_length, ":string_param_length") \ |
382 V(capture_length, ":capture_length") \ | 380 V(capture_length, ":capture_length") \ |
383 V(word_character_map, ":word_character_map") \ | 381 V(word_character_map, ":word_character_map") \ |
384 V(match_start_index, ":match_start_index") \ | 382 V(match_start_index, ":match_start_index") \ |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 friend class Serializer; | 665 friend class Serializer; |
668 friend class Deserializer; | 666 friend class Deserializer; |
669 friend class ApiMessageReader; | 667 friend class ApiMessageReader; |
670 | 668 |
671 DISALLOW_COPY_AND_ASSIGN(Symbols); | 669 DISALLOW_COPY_AND_ASSIGN(Symbols); |
672 }; | 670 }; |
673 | 671 |
674 } // namespace dart | 672 } // namespace dart |
675 | 673 |
676 #endif // RUNTIME_VM_SYMBOLS_H_ | 674 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |