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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 V(dayperiod_string, "dayperiod") \ | 52 V(dayperiod_string, "dayperiod") \ |
53 V(day_string, "day") \ | 53 V(day_string, "day") \ |
54 V(default_string, "default") \ | 54 V(default_string, "default") \ |
55 V(defineProperty_string, "defineProperty") \ | 55 V(defineProperty_string, "defineProperty") \ |
56 V(deleteProperty_string, "deleteProperty") \ | 56 V(deleteProperty_string, "deleteProperty") \ |
57 V(did_handle_string, "didHandle") \ | 57 V(did_handle_string, "didHandle") \ |
58 V(display_name_string, "displayName") \ | 58 V(display_name_string, "displayName") \ |
59 V(done_string, "done") \ | 59 V(done_string, "done") \ |
60 V(dot_result_string, ".result") \ | 60 V(dot_result_string, ".result") \ |
61 V(dot_string, ".") \ | 61 V(dot_string, ".") \ |
| 62 V(exec_string, "exec") \ |
62 V(entries_string, "entries") \ | 63 V(entries_string, "entries") \ |
63 V(enqueue_string, "enqueue") \ | 64 V(enqueue_string, "enqueue") \ |
64 V(enumerable_string, "enumerable") \ | 65 V(enumerable_string, "enumerable") \ |
65 V(era_string, "era") \ | 66 V(era_string, "era") \ |
66 V(Error_string, "Error") \ | 67 V(Error_string, "Error") \ |
67 V(eval_string, "eval") \ | 68 V(eval_string, "eval") \ |
68 V(EvalError_string, "EvalError") \ | 69 V(EvalError_string, "EvalError") \ |
69 V(false_string, "false") \ | 70 V(false_string, "false") \ |
70 V(flags_string, "flags") \ | 71 V(flags_string, "flags") \ |
71 V(float32x4_string, "float32x4") \ | 72 V(float32x4_string, "float32x4") \ |
(...skipping 168 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 | 241 // 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 | 242 // 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 | 243 // check. Because this behaviour is not specified properly as of yet, it only |
243 // applies to a subset of spec-defined Well-Known Symbols. | 244 // applies to a subset of spec-defined Well-Known Symbols. |
244 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 245 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
245 V(has_instance_symbol, Symbol.hasInstance) \ | 246 V(has_instance_symbol, Symbol.hasInstance) \ |
246 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 247 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
247 V(to_string_tag_symbol, Symbol.toStringTag) | 248 V(to_string_tag_symbol, Symbol.toStringTag) |
248 | 249 |
249 #endif // V8_HEAP_SYMBOLS_H_ | 250 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |