| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_CONTEXTS_H_ | 5 #ifndef V8_CONTEXTS_H_ |
| 6 #define V8_CONTEXTS_H_ | 6 #define V8_CONTEXTS_H_ |
| 7 | 7 |
| 8 #include "src/heap/heap.h" | 8 #include "src/heap/heap.h" |
| 9 #include "src/objects.h" | 9 #include "src/objects.h" |
| 10 | 10 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 V(GLOBAL_EVAL_FUN_INDEX, JSFunction, global_eval_fun) \ | 84 V(GLOBAL_EVAL_FUN_INDEX, JSFunction, global_eval_fun) \ |
| 85 V(MAP_DELETE_METHOD_INDEX, JSFunction, map_delete) \ | 85 V(MAP_DELETE_METHOD_INDEX, JSFunction, map_delete) \ |
| 86 V(MAP_GET_METHOD_INDEX, JSFunction, map_get) \ | 86 V(MAP_GET_METHOD_INDEX, JSFunction, map_get) \ |
| 87 V(MAP_HAS_METHOD_INDEX, JSFunction, map_has) \ | 87 V(MAP_HAS_METHOD_INDEX, JSFunction, map_has) \ |
| 88 V(MAP_SET_METHOD_INDEX, JSFunction, map_set) \ | 88 V(MAP_SET_METHOD_INDEX, JSFunction, map_set) \ |
| 89 V(OBJECT_VALUE_OF, JSFunction, object_value_of) \ | 89 V(OBJECT_VALUE_OF, JSFunction, object_value_of) \ |
| 90 V(OBJECT_TO_STRING, JSFunction, object_to_string) \ | 90 V(OBJECT_TO_STRING, JSFunction, object_to_string) \ |
| 91 V(PROMISE_CATCH_INDEX, JSFunction, promise_catch) \ | 91 V(PROMISE_CATCH_INDEX, JSFunction, promise_catch) \ |
| 92 V(PROMISE_CREATE_INDEX, JSFunction, promise_create) \ | 92 V(PROMISE_CREATE_INDEX, JSFunction, promise_create) \ |
| 93 V(PROMISE_FUNCTION_INDEX, JSFunction, promise_function) \ | 93 V(PROMISE_FUNCTION_INDEX, JSFunction, promise_function) \ |
| 94 V(PROMISE_HANDLE_INDEX, JSFunction, promise_handle) \ |
| 94 V(PROMISE_HAS_USER_DEFINED_REJECT_HANDLER_INDEX, JSFunction, \ | 95 V(PROMISE_HAS_USER_DEFINED_REJECT_HANDLER_INDEX, JSFunction, \ |
| 95 promise_has_user_defined_reject_handler) \ | 96 promise_has_user_defined_reject_handler) \ |
| 96 V(PROMISE_REJECT_INDEX, JSFunction, promise_reject) \ | 97 V(PROMISE_REJECT_INDEX, JSFunction, promise_reject) \ |
| 97 V(PROMISE_RESOLVE_INDEX, JSFunction, promise_resolve) \ | 98 V(PROMISE_RESOLVE_INDEX, JSFunction, promise_resolve) \ |
| 98 V(PROMISE_THEN_INDEX, JSFunction, promise_then) \ | 99 V(PROMISE_THEN_INDEX, JSFunction, promise_then) \ |
| 99 V(RANGE_ERROR_FUNCTION_INDEX, JSFunction, range_error_function) \ | 100 V(RANGE_ERROR_FUNCTION_INDEX, JSFunction, range_error_function) \ |
| 100 V(REGEXP_LAST_MATCH_INFO_INDEX, JSObject, regexp_last_match_info) \ | 101 V(REGEXP_LAST_MATCH_INFO_INDEX, JSObject, regexp_last_match_info) \ |
| 101 V(REJECT_PROMISE_NO_DEBUG_EVENT_INDEX, JSFunction, \ | 102 V(REJECT_PROMISE_NO_DEBUG_EVENT_INDEX, JSFunction, \ |
| 102 reject_promise_no_debug_event) \ | 103 reject_promise_no_debug_event) \ |
| 103 V(REFERENCE_ERROR_FUNCTION_INDEX, JSFunction, reference_error_function) \ | 104 V(REFERENCE_ERROR_FUNCTION_INDEX, JSFunction, reference_error_function) \ |
| (...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 #endif | 562 #endif |
| 562 | 563 |
| 563 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); | 564 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); |
| 564 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); | 565 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); |
| 565 }; | 566 }; |
| 566 | 567 |
| 567 } // namespace internal | 568 } // namespace internal |
| 568 } // namespace v8 | 569 } // namespace v8 |
| 569 | 570 |
| 570 #endif // V8_CONTEXTS_H_ | 571 #endif // V8_CONTEXTS_H_ |
| OLD | NEW |