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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 V(current_character, ":current_character") \ | 340 V(current_character, ":current_character") \ |
341 V(current_position, ":current_position") \ | 341 V(current_position, ":current_position") \ |
342 V(string_param_length, ":string_param_length") \ | 342 V(string_param_length, ":string_param_length") \ |
343 V(capture_length, ":capture_length") \ | 343 V(capture_length, ":capture_length") \ |
344 V(word_character_map, ":word_character_map") \ | 344 V(word_character_map, ":word_character_map") \ |
345 V(match_start_index, ":match_start_index") \ | 345 V(match_start_index, ":match_start_index") \ |
346 V(capture_start_index, ":capture_start_index") \ | 346 V(capture_start_index, ":capture_start_index") \ |
347 V(match_end_index, ":match_end_index") \ | 347 V(match_end_index, ":match_end_index") \ |
348 V(char_in_capture, ":char_in_capture") \ | 348 V(char_in_capture, ":char_in_capture") \ |
349 V(char_in_match, ":char_in_match") \ | 349 V(char_in_match, ":char_in_match") \ |
| 350 V(index_temp, ":index_temp") \ |
350 V(result, ":result") \ | 351 V(result, ":result") \ |
351 V(position_registers, ":position_registers") \ | 352 V(position_registers, ":position_registers") \ |
352 V(string_param, ":string_param") \ | 353 V(string_param, ":string_param") \ |
353 V(start_index_param, ":start_index_param") \ | 354 V(start_index_param, ":start_index_param") \ |
354 V(clear, "clear") \ | 355 V(clear, "clear") \ |
355 V(_wordCharacterMap, "_wordCharacterMap") \ | 356 V(_wordCharacterMap, "_wordCharacterMap") \ |
356 V(print, "print") \ | 357 V(print, "print") \ |
357 V(last, "last") \ | 358 V(last, "last") \ |
358 V(removeLast, "removeLast") \ | 359 V(removeLast, "removeLast") \ |
359 V(add, "add") \ | 360 V(add, "add") \ |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 friend class SnapshotReader; | 559 friend class SnapshotReader; |
559 friend class SnapshotWriter; | 560 friend class SnapshotWriter; |
560 friend class ApiMessageReader; | 561 friend class ApiMessageReader; |
561 | 562 |
562 DISALLOW_COPY_AND_ASSIGN(Symbols); | 563 DISALLOW_COPY_AND_ASSIGN(Symbols); |
563 }; | 564 }; |
564 | 565 |
565 } // namespace dart | 566 } // namespace dart |
566 | 567 |
567 #endif // VM_SYMBOLS_H_ | 568 #endif // VM_SYMBOLS_H_ |
OLD | NEW |