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 27 matching lines...) Expand all Loading... |
38 V(Date_string, "Date") \ | 38 V(Date_string, "Date") \ |
39 V(default_string, "default") \ | 39 V(default_string, "default") \ |
40 V(defineProperty_string, "defineProperty") \ | 40 V(defineProperty_string, "defineProperty") \ |
41 V(deleteProperty_string, "deleteProperty") \ | 41 V(deleteProperty_string, "deleteProperty") \ |
42 V(display_name_string, "displayName") \ | 42 V(display_name_string, "displayName") \ |
43 V(done_string, "done") \ | 43 V(done_string, "done") \ |
44 V(dot_result_string, ".result") \ | 44 V(dot_result_string, ".result") \ |
45 V(dot_string, ".") \ | 45 V(dot_string, ".") \ |
46 V(entries_string, "entries") \ | 46 V(entries_string, "entries") \ |
47 V(enumerable_string, "enumerable") \ | 47 V(enumerable_string, "enumerable") \ |
48 V(enumerate_string, "enumerate") \ | |
49 V(Error_string, "Error") \ | 48 V(Error_string, "Error") \ |
50 V(eval_string, "eval") \ | 49 V(eval_string, "eval") \ |
51 V(false_string, "false") \ | 50 V(false_string, "false") \ |
52 V(float32x4_string, "float32x4") \ | 51 V(float32x4_string, "float32x4") \ |
53 V(Float32x4_string, "Float32x4") \ | 52 V(Float32x4_string, "Float32x4") \ |
54 V(for_api_string, "for_api") \ | 53 V(for_api_string, "for_api") \ |
55 V(for_string, "for") \ | 54 V(for_string, "for") \ |
56 V(function_string, "function") \ | 55 V(function_string, "function") \ |
57 V(Function_string, "Function") \ | 56 V(Function_string, "Function") \ |
58 V(Generator_string, "Generator") \ | 57 V(Generator_string, "Generator") \ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 193 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
195 // them to produce an undefined value when a load results in a failed access | 194 // them to produce an undefined value when a load results in a failed access |
196 // check. Because this behaviour is not specified properly as of yet, it only | 195 // check. Because this behaviour is not specified properly as of yet, it only |
197 // applies to a subset of spec-defined Well-Known Symbols. | 196 // applies to a subset of spec-defined Well-Known Symbols. |
198 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 197 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
199 V(has_instance_symbol, Symbol.hasInstance) \ | 198 V(has_instance_symbol, Symbol.hasInstance) \ |
200 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 199 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
201 V(to_string_tag_symbol, Symbol.toStringTag) | 200 V(to_string_tag_symbol, Symbol.toStringTag) |
202 | 201 |
203 #endif // V8_HEAP_SYMBOLS_H_ | 202 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |