OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_HEAP_SYMBOLS_H_ | 5 #ifndef V8_HEAP_SYMBOLS_H_ |
6 #define V8_HEAP_SYMBOLS_H_ | 6 #define V8_HEAP_SYMBOLS_H_ |
7 | 7 |
8 #define INTERNALIZED_STRING_LIST(V) \ | 8 #define INTERNALIZED_STRING_LIST(V) \ |
9 V(anonymous_string, "anonymous") \ | 9 V(anonymous_string, "anonymous") \ |
10 V(apply_string, "apply") \ | 10 V(apply_string, "apply") \ |
(...skipping 133 matching lines...) Loading... |
144 V(values_string, "values") \ | 144 V(values_string, "values") \ |
145 V(value_string, "value") \ | 145 V(value_string, "value") \ |
146 V(WeakMap_string, "WeakMap") \ | 146 V(WeakMap_string, "WeakMap") \ |
147 V(WeakSet_string, "WeakSet") \ | 147 V(WeakSet_string, "WeakSet") \ |
148 V(writable_string, "writable") | 148 V(writable_string, "writable") |
149 | 149 |
150 #define PRIVATE_SYMBOL_LIST(V) \ | 150 #define PRIVATE_SYMBOL_LIST(V) \ |
151 V(array_iteration_kind_symbol) \ | 151 V(array_iteration_kind_symbol) \ |
152 V(array_iterator_next_symbol) \ | 152 V(array_iterator_next_symbol) \ |
153 V(array_iterator_object_symbol) \ | 153 V(array_iterator_object_symbol) \ |
| 154 V(call_site_constructor_symbol) \ |
154 V(call_site_function_symbol) \ | 155 V(call_site_function_symbol) \ |
155 V(call_site_position_symbol) \ | 156 V(call_site_position_symbol) \ |
156 V(call_site_receiver_symbol) \ | 157 V(call_site_receiver_symbol) \ |
157 V(call_site_strict_symbol) \ | 158 V(call_site_strict_symbol) \ |
158 V(call_site_wasm_obj_symbol) \ | 159 V(call_site_wasm_obj_symbol) \ |
159 V(call_site_wasm_func_index_symbol) \ | 160 V(call_site_wasm_func_index_symbol) \ |
160 V(class_end_position_symbol) \ | 161 V(class_end_position_symbol) \ |
161 V(class_start_position_symbol) \ | 162 V(class_start_position_symbol) \ |
162 V(detailed_stack_trace_symbol) \ | 163 V(detailed_stack_trace_symbol) \ |
163 V(elements_transition_symbol) \ | 164 V(elements_transition_symbol) \ |
(...skipping 45 matching lines...) Loading... |
209 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 210 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
210 // them to produce an undefined value when a load results in a failed access | 211 // them to produce an undefined value when a load results in a failed access |
211 // check. Because this behaviour is not specified properly as of yet, it only | 212 // check. Because this behaviour is not specified properly as of yet, it only |
212 // applies to a subset of spec-defined Well-Known Symbols. | 213 // applies to a subset of spec-defined Well-Known Symbols. |
213 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 214 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
214 V(has_instance_symbol, Symbol.hasInstance) \ | 215 V(has_instance_symbol, Symbol.hasInstance) \ |
215 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 216 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
216 V(to_string_tag_symbol, Symbol.toStringTag) | 217 V(to_string_tag_symbol, Symbol.toStringTag) |
217 | 218 |
218 #endif // V8_HEAP_SYMBOLS_H_ | 219 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |