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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 V(done_string, "done") \ | 57 V(done_string, "done") \ |
58 V(dot_result_string, ".result") \ | 58 V(dot_result_string, ".result") \ |
59 V(dot_string, ".") \ | 59 V(dot_string, ".") \ |
60 V(entries_string, "entries") \ | 60 V(entries_string, "entries") \ |
61 V(enumerable_string, "enumerable") \ | 61 V(enumerable_string, "enumerable") \ |
62 V(era_string, "era") \ | 62 V(era_string, "era") \ |
63 V(Error_string, "Error") \ | 63 V(Error_string, "Error") \ |
64 V(eval_string, "eval") \ | 64 V(eval_string, "eval") \ |
65 V(EvalError_string, "EvalError") \ | 65 V(EvalError_string, "EvalError") \ |
66 V(false_string, "false") \ | 66 V(false_string, "false") \ |
| 67 V(flags_string, "flags") \ |
67 V(float32x4_string, "float32x4") \ | 68 V(float32x4_string, "float32x4") \ |
68 V(Float32x4_string, "Float32x4") \ | 69 V(Float32x4_string, "Float32x4") \ |
69 V(for_api_string, "for_api") \ | 70 V(for_api_string, "for_api") \ |
70 V(for_string, "for") \ | 71 V(for_string, "for") \ |
71 V(function_string, "function") \ | 72 V(function_string, "function") \ |
72 V(Function_string, "Function") \ | 73 V(Function_string, "Function") \ |
73 V(Generator_string, "Generator") \ | 74 V(Generator_string, "Generator") \ |
74 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ | 75 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ |
75 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \ | 76 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \ |
76 V(getPrototypeOf_string, "getPrototypeOf") \ | 77 V(getPrototypeOf_string, "getPrototypeOf") \ |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 232 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
232 // them to produce an undefined value when a load results in a failed access | 233 // them to produce an undefined value when a load results in a failed access |
233 // check. Because this behaviour is not specified properly as of yet, it only | 234 // check. Because this behaviour is not specified properly as of yet, it only |
234 // applies to a subset of spec-defined Well-Known Symbols. | 235 // applies to a subset of spec-defined Well-Known Symbols. |
235 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 236 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
236 V(has_instance_symbol, Symbol.hasInstance) \ | 237 V(has_instance_symbol, Symbol.hasInstance) \ |
237 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 238 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
238 V(to_string_tag_symbol, Symbol.toStringTag) | 239 V(to_string_tag_symbol, Symbol.toStringTag) |
239 | 240 |
240 #endif // V8_HEAP_SYMBOLS_H_ | 241 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |