| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 V(Float32x4_string, "Float32x4") \ | 81 V(Float32x4_string, "Float32x4") \ |
| 82 V(function_string, "function") \ | 82 V(function_string, "function") \ |
| 83 V(Function_string, "Function") \ | 83 V(Function_string, "Function") \ |
| 84 V(Generator_string, "Generator") \ | 84 V(Generator_string, "Generator") \ |
| 85 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ | 85 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ |
| 86 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \ | 86 V(getOwnPropertyDescriptors_string, "getOwnPropertyDescriptors") \ |
| 87 V(getPrototypeOf_string, "getPrototypeOf") \ | 87 V(getPrototypeOf_string, "getPrototypeOf") \ |
| 88 V(get_string, "get") \ | 88 V(get_string, "get") \ |
| 89 V(get_space_string, "get ") \ | 89 V(get_space_string, "get ") \ |
| 90 V(global_string, "global") \ | 90 V(global_string, "global") \ |
| 91 V(group_string, "group") \ | |
| 92 V(has_string, "has") \ | 91 V(has_string, "has") \ |
| 93 V(hour_string, "hour") \ | 92 V(hour_string, "hour") \ |
| 94 V(ignoreCase_string, "ignoreCase") \ | 93 V(ignoreCase_string, "ignoreCase") \ |
| 95 V(illegal_access_string, "illegal access") \ | 94 V(illegal_access_string, "illegal access") \ |
| 96 V(illegal_argument_string, "illegal argument") \ | 95 V(illegal_argument_string, "illegal argument") \ |
| 97 V(index_string, "index") \ | 96 V(index_string, "index") \ |
| 98 V(infinity_string, "Infinity") \ | 97 V(infinity_string, "Infinity") \ |
| 99 V(input_string, "input") \ | 98 V(input_string, "input") \ |
| 100 V(int16x8_string, "int16x8") \ | 99 V(int16x8_string, "int16x8") \ |
| 101 V(Int16x8_string, "Int16x8") \ | 100 V(Int16x8_string, "Int16x8") \ |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 257 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
| 259 // them to produce an undefined value when a load results in a failed access | 258 // them to produce an undefined value when a load results in a failed access |
| 260 // check. Because this behaviour is not specified properly as of yet, it only | 259 // check. Because this behaviour is not specified properly as of yet, it only |
| 261 // applies to a subset of spec-defined Well-Known Symbols. | 260 // applies to a subset of spec-defined Well-Known Symbols. |
| 262 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 261 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
| 263 V(has_instance_symbol, Symbol.hasInstance) \ | 262 V(has_instance_symbol, Symbol.hasInstance) \ |
| 264 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 263 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
| 265 V(to_string_tag_symbol, Symbol.toStringTag) | 264 V(to_string_tag_symbol, Symbol.toStringTag) |
| 266 | 265 |
| 267 #endif // V8_HEAP_SYMBOLS_H_ | 266 #endif // V8_HEAP_SYMBOLS_H_ |
| OLD | NEW |