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_function_string, "(anonymous function)") \ | 9 V(anonymous_function_string, "(anonymous function)") \ |
10 V(anonymous_string, "anonymous") \ | 10 V(anonymous_string, "anonymous") \ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 V(flags_string, "flags") \ | 73 V(flags_string, "flags") \ |
74 V(function_string, "function") \ | 74 V(function_string, "function") \ |
75 V(Function_string, "Function") \ | 75 V(Function_string, "Function") \ |
76 V(Generator_string, "Generator") \ | 76 V(Generator_string, "Generator") \ |
77 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ | 77 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ |
78 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \ | 78 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \ |
79 V(getPrototypeOf_string, "getPrototypeOf") \ | 79 V(getPrototypeOf_string, "getPrototypeOf") \ |
80 V(get_string, "get") \ | 80 V(get_string, "get") \ |
81 V(get_space_string, "get ") \ | 81 V(get_space_string, "get ") \ |
82 V(global_string, "global") \ | 82 V(global_string, "global") \ |
83 V(group_string, "group") \ | 83 V(groups_string, "groups") \ |
84 V(has_string, "has") \ | 84 V(has_string, "has") \ |
85 V(hour_string, "hour") \ | 85 V(hour_string, "hour") \ |
86 V(ignoreCase_string, "ignoreCase") \ | 86 V(ignoreCase_string, "ignoreCase") \ |
87 V(illegal_access_string, "illegal access") \ | 87 V(illegal_access_string, "illegal access") \ |
88 V(illegal_argument_string, "illegal argument") \ | 88 V(illegal_argument_string, "illegal argument") \ |
89 V(index_string, "index") \ | 89 V(index_string, "index") \ |
90 V(infinity_string, "Infinity") \ | 90 V(infinity_string, "Infinity") \ |
91 V(input_string, "input") \ | 91 V(input_string, "input") \ |
92 V(isExtensible_string, "isExtensible") \ | 92 V(isExtensible_string, "isExtensible") \ |
93 V(isView_string, "isView") \ | 93 V(isView_string, "isView") \ |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 240 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
241 // them to produce an undefined value when a load results in a failed access | 241 // them to produce an undefined value when a load results in a failed access |
242 // check. Because this behaviour is not specified properly as of yet, it only | 242 // check. Because this behaviour is not specified properly as of yet, it only |
243 // applies to a subset of spec-defined Well-Known Symbols. | 243 // applies to a subset of spec-defined Well-Known Symbols. |
244 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 244 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
245 V(has_instance_symbol, Symbol.hasInstance) \ | 245 V(has_instance_symbol, Symbol.hasInstance) \ |
246 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 246 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
247 V(to_string_tag_symbol, Symbol.toStringTag) | 247 V(to_string_tag_symbol, Symbol.toStringTag) |
248 | 248 |
249 #endif // V8_HEAP_SYMBOLS_H_ | 249 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |