| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 V(OptimizedOut, "<optimized out>") \ | 332 V(OptimizedOut, "<optimized out>") \ |
| 333 V(NotInitialized, "<not initialized>") \ | 333 V(NotInitialized, "<not initialized>") \ |
| 334 V(AllocationStubFor, "Allocation stub for ") \ | 334 V(AllocationStubFor, "Allocation stub for ") \ |
| 335 V(TempParam, ":temp_param") \ | 335 V(TempParam, ":temp_param") \ |
| 336 V(_UserTag, "_UserTag") \ | 336 V(_UserTag, "_UserTag") \ |
| 337 V(Default, "Default") \ | 337 V(Default, "Default") \ |
| 338 V(StubPrefix, "[Stub] ") \ | 338 V(StubPrefix, "[Stub] ") \ |
| 339 V(ClassID, "ClassID") \ | 339 V(ClassID, "ClassID") \ |
| 340 V(DartIsVM, "dart.isVM") \ | 340 V(DartIsVM, "dart.isVM") \ |
| 341 V(stack, ":stack") \ | 341 V(stack, ":stack") \ |
| 342 V(stack_pointer, ":stack_pointer") \ |
| 342 V(current_character, ":current_character") \ | 343 V(current_character, ":current_character") \ |
| 343 V(current_position, ":current_position") \ | 344 V(current_position, ":current_position") \ |
| 344 V(string_param_length, ":string_param_length") \ | 345 V(string_param_length, ":string_param_length") \ |
| 345 V(capture_length, ":capture_length") \ | 346 V(capture_length, ":capture_length") \ |
| 346 V(word_character_map, ":word_character_map") \ | 347 V(word_character_map, ":word_character_map") \ |
| 347 V(match_start_index, ":match_start_index") \ | 348 V(match_start_index, ":match_start_index") \ |
| 348 V(capture_start_index, ":capture_start_index") \ | 349 V(capture_start_index, ":capture_start_index") \ |
| 349 V(match_end_index, ":match_end_index") \ | 350 V(match_end_index, ":match_end_index") \ |
| 350 V(char_in_capture, ":char_in_capture") \ | 351 V(char_in_capture, ":char_in_capture") \ |
| 351 V(char_in_match, ":char_in_match") \ | 352 V(char_in_match, ":char_in_match") \ |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 friend class SnapshotReader; | 574 friend class SnapshotReader; |
| 574 friend class SnapshotWriter; | 575 friend class SnapshotWriter; |
| 575 friend class ApiMessageReader; | 576 friend class ApiMessageReader; |
| 576 | 577 |
| 577 DISALLOW_COPY_AND_ASSIGN(Symbols); | 578 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 578 }; | 579 }; |
| 579 | 580 |
| 580 } // namespace dart | 581 } // namespace dart |
| 581 | 582 |
| 582 #endif // VM_SYMBOLS_H_ | 583 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |