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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 V(this_string, "this") \ | 157 V(this_string, "this") \ |
158 V(throw_string, "throw") \ | 158 V(throw_string, "throw") \ |
159 V(timed_out, "timed-out") \ | 159 V(timed_out, "timed-out") \ |
160 V(timeZoneName_string, "timeZoneName") \ | 160 V(timeZoneName_string, "timeZoneName") \ |
161 V(toJSON_string, "toJSON") \ | 161 V(toJSON_string, "toJSON") \ |
162 V(toString_string, "toString") \ | 162 V(toString_string, "toString") \ |
163 V(true_string, "true") \ | 163 V(true_string, "true") \ |
164 V(TypeError_string, "TypeError") \ | 164 V(TypeError_string, "TypeError") \ |
165 V(type_string, "type") \ | 165 V(type_string, "type") \ |
166 V(CompileError_string, "CompileError") \ | 166 V(CompileError_string, "CompileError") \ |
| 167 V(LinkError_string, "LinkError") \ |
167 V(RuntimeError_string, "RuntimeError") \ | 168 V(RuntimeError_string, "RuntimeError") \ |
168 V(uint16x8_string, "uint16x8") \ | 169 V(uint16x8_string, "uint16x8") \ |
169 V(Uint16x8_string, "Uint16x8") \ | 170 V(Uint16x8_string, "Uint16x8") \ |
170 V(uint32x4_string, "uint32x4") \ | 171 V(uint32x4_string, "uint32x4") \ |
171 V(Uint32x4_string, "Uint32x4") \ | 172 V(Uint32x4_string, "Uint32x4") \ |
172 V(uint8x16_string, "uint8x16") \ | 173 V(uint8x16_string, "uint8x16") \ |
173 V(Uint8x16_string, "Uint8x16") \ | 174 V(Uint8x16_string, "Uint8x16") \ |
174 V(undefined_string, "undefined") \ | 175 V(undefined_string, "undefined") \ |
175 V(undefined_to_string, "[object Undefined]") \ | 176 V(undefined_to_string, "[object Undefined]") \ |
176 V(unicode_string, "unicode") \ | 177 V(unicode_string, "unicode") \ |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 236 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
236 // them to produce an undefined value when a load results in a failed access | 237 // them to produce an undefined value when a load results in a failed access |
237 // check. Because this behaviour is not specified properly as of yet, it only | 238 // check. Because this behaviour is not specified properly as of yet, it only |
238 // applies to a subset of spec-defined Well-Known Symbols. | 239 // applies to a subset of spec-defined Well-Known Symbols. |
239 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 240 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
240 V(has_instance_symbol, Symbol.hasInstance) \ | 241 V(has_instance_symbol, Symbol.hasInstance) \ |
241 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 242 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
242 V(to_string_tag_symbol, Symbol.toStringTag) | 243 V(to_string_tag_symbol, Symbol.toStringTag) |
243 | 244 |
244 #endif // V8_HEAP_SYMBOLS_H_ | 245 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |