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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 V(class_end_position_symbol) \ | 143 V(class_end_position_symbol) \ |
144 V(class_start_position_symbol) \ | 144 V(class_start_position_symbol) \ |
145 V(detailed_stack_trace_symbol) \ | 145 V(detailed_stack_trace_symbol) \ |
146 V(elements_transition_symbol) \ | 146 V(elements_transition_symbol) \ |
147 V(error_end_pos_symbol) \ | 147 V(error_end_pos_symbol) \ |
148 V(error_script_symbol) \ | 148 V(error_script_symbol) \ |
149 V(error_start_pos_symbol) \ | 149 V(error_start_pos_symbol) \ |
150 V(formatted_stack_trace_symbol) \ | 150 V(formatted_stack_trace_symbol) \ |
151 V(frozen_symbol) \ | 151 V(frozen_symbol) \ |
152 V(hash_code_symbol) \ | 152 V(hash_code_symbol) \ |
| 153 V(hidden_properties_symbol) \ |
153 V(home_object_symbol) \ | 154 V(home_object_symbol) \ |
154 V(internal_error_symbol) \ | 155 V(internal_error_symbol) \ |
155 V(intl_impl_object_symbol) \ | 156 V(intl_impl_object_symbol) \ |
156 V(intl_initialized_marker_symbol) \ | 157 V(intl_initialized_marker_symbol) \ |
157 V(intl_pattern_symbol) \ | 158 V(intl_pattern_symbol) \ |
158 V(intl_resolved_symbol) \ | 159 V(intl_resolved_symbol) \ |
159 V(megamorphic_symbol) \ | 160 V(megamorphic_symbol) \ |
160 V(native_context_index_symbol) \ | 161 V(native_context_index_symbol) \ |
161 V(nonexistent_symbol) \ | 162 V(nonexistent_symbol) \ |
162 V(nonextensible_symbol) \ | 163 V(nonextensible_symbol) \ |
(...skipping 30 matching lines...) Expand all Loading... |
193 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 194 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
194 // them to produce an undefined value when a load results in a failed access | 195 // them to produce an undefined value when a load results in a failed access |
195 // check. Because this behaviour is not specified properly as of yet, it only | 196 // check. Because this behaviour is not specified properly as of yet, it only |
196 // applies to a subset of spec-defined Well-Known Symbols. | 197 // applies to a subset of spec-defined Well-Known Symbols. |
197 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 198 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
198 V(has_instance_symbol, Symbol.hasInstance) \ | 199 V(has_instance_symbol, Symbol.hasInstance) \ |
199 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 200 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
200 V(to_string_tag_symbol, Symbol.toStringTag) | 201 V(to_string_tag_symbol, Symbol.toStringTag) |
201 | 202 |
202 #endif // V8_HEAP_SYMBOLS_H_ | 203 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |