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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 V(RegExp_string, "RegExp") \ | 121 V(RegExp_string, "RegExp") \ |
122 V(script_string, "script") \ | 122 V(script_string, "script") \ |
123 V(setPrototypeOf_string, "setPrototypeOf") \ | 123 V(setPrototypeOf_string, "setPrototypeOf") \ |
124 V(set_string, "set") \ | 124 V(set_string, "set") \ |
125 V(Set_string, "Set") \ | 125 V(Set_string, "Set") \ |
126 V(source_mapping_url_string, "source_mapping_url") \ | 126 V(source_mapping_url_string, "source_mapping_url") \ |
127 V(source_string, "source") \ | 127 V(source_string, "source") \ |
128 V(sourceText_string, "sourceText") \ | 128 V(sourceText_string, "sourceText") \ |
129 V(source_url_string, "source_url") \ | 129 V(source_url_string, "source_url") \ |
130 V(stack_string, "stack") \ | 130 V(stack_string, "stack") \ |
| 131 V(stackTraceLimit_string, "stackTraceLimit") \ |
131 V(strict_compare_ic_string, "===") \ | 132 V(strict_compare_ic_string, "===") \ |
132 V(string_string, "string") \ | 133 V(string_string, "string") \ |
133 V(String_string, "String") \ | 134 V(String_string, "String") \ |
134 V(symbol_string, "symbol") \ | 135 V(symbol_string, "symbol") \ |
135 V(Symbol_string, "Symbol") \ | 136 V(Symbol_string, "Symbol") \ |
136 V(SyntaxError_string, "SyntaxError") \ | 137 V(SyntaxError_string, "SyntaxError") \ |
137 V(this_string, "this") \ | 138 V(this_string, "this") \ |
138 V(throw_string, "throw") \ | 139 V(throw_string, "throw") \ |
139 V(timed_out, "timed-out") \ | 140 V(timed_out, "timed-out") \ |
140 V(toJSON_string, "toJSON") \ | 141 V(toJSON_string, "toJSON") \ |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 219 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
219 // them to produce an undefined value when a load results in a failed access | 220 // them to produce an undefined value when a load results in a failed access |
220 // check. Because this behaviour is not specified properly as of yet, it only | 221 // check. Because this behaviour is not specified properly as of yet, it only |
221 // applies to a subset of spec-defined Well-Known Symbols. | 222 // applies to a subset of spec-defined Well-Known Symbols. |
222 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 223 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
223 V(has_instance_symbol, Symbol.hasInstance) \ | 224 V(has_instance_symbol, Symbol.hasInstance) \ |
224 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 225 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
225 V(to_string_tag_symbol, Symbol.toStringTag) | 226 V(to_string_tag_symbol, Symbol.toStringTag) |
226 | 227 |
227 #endif // V8_HEAP_SYMBOLS_H_ | 228 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |