| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 V(ASYNC_FUNCTION_AWAIT_INDEX, JSFunction, async_function_await) \ | 71 V(ASYNC_FUNCTION_AWAIT_INDEX, JSFunction, async_function_await) \ |
| 72 V(DERIVED_GET_TRAP_INDEX, JSFunction, derived_get_trap) \ | 72 V(DERIVED_GET_TRAP_INDEX, JSFunction, derived_get_trap) \ |
| 73 V(ERROR_FUNCTION_INDEX, JSFunction, error_function) \ | 73 V(ERROR_FUNCTION_INDEX, JSFunction, error_function) \ |
| 74 V(ERROR_TO_STRING, JSFunction, error_to_string) \ | 74 V(ERROR_TO_STRING, JSFunction, error_to_string) \ |
| 75 V(EVAL_ERROR_FUNCTION_INDEX, JSFunction, eval_error_function) \ | 75 V(EVAL_ERROR_FUNCTION_INDEX, JSFunction, eval_error_function) \ |
| 76 V(GLOBAL_EVAL_FUN_INDEX, JSFunction, global_eval_fun) \ | 76 V(GLOBAL_EVAL_FUN_INDEX, JSFunction, global_eval_fun) \ |
| 77 V(MAP_DELETE_METHOD_INDEX, JSFunction, map_delete) \ | 77 V(MAP_DELETE_METHOD_INDEX, JSFunction, map_delete) \ |
| 78 V(MAP_GET_METHOD_INDEX, JSFunction, map_get) \ | 78 V(MAP_GET_METHOD_INDEX, JSFunction, map_get) \ |
| 79 V(MAP_HAS_METHOD_INDEX, JSFunction, map_has) \ | 79 V(MAP_HAS_METHOD_INDEX, JSFunction, map_has) \ |
| 80 V(MAP_SET_METHOD_INDEX, JSFunction, map_set) \ | 80 V(MAP_SET_METHOD_INDEX, JSFunction, map_set) \ |
| 81 V(MESSAGE_GET_COLUMN_NUMBER_INDEX, JSFunction, message_get_column_number) \ | |
| 82 V(MESSAGE_GET_LINE_NUMBER_INDEX, JSFunction, message_get_line_number) \ | |
| 83 V(MESSAGE_GET_SOURCE_LINE_INDEX, JSFunction, message_get_source_line) \ | |
| 84 V(OBJECT_VALUE_OF, JSFunction, object_value_of) \ | 81 V(OBJECT_VALUE_OF, JSFunction, object_value_of) \ |
| 85 V(OBJECT_TO_STRING, JSFunction, object_to_string) \ | 82 V(OBJECT_TO_STRING, JSFunction, object_to_string) \ |
| 86 V(PROMISE_CATCH_INDEX, JSFunction, promise_catch) \ | 83 V(PROMISE_CATCH_INDEX, JSFunction, promise_catch) \ |
| 87 V(PROMISE_CHAIN_INDEX, JSFunction, promise_chain) \ | 84 V(PROMISE_CHAIN_INDEX, JSFunction, promise_chain) \ |
| 88 V(PROMISE_CREATE_INDEX, JSFunction, promise_create) \ | 85 V(PROMISE_CREATE_INDEX, JSFunction, promise_create) \ |
| 89 V(PROMISE_FUNCTION_INDEX, JSFunction, promise_function) \ | 86 V(PROMISE_FUNCTION_INDEX, JSFunction, promise_function) \ |
| 90 V(PROMISE_HAS_USER_DEFINED_REJECT_HANDLER_INDEX, JSFunction, \ | 87 V(PROMISE_HAS_USER_DEFINED_REJECT_HANDLER_INDEX, JSFunction, \ |
| 91 promise_has_user_defined_reject_handler) \ | 88 promise_has_user_defined_reject_handler) \ |
| 92 V(PROMISE_REJECT_INDEX, JSFunction, promise_reject) \ | 89 V(PROMISE_REJECT_INDEX, JSFunction, promise_reject) \ |
| 93 V(PROMISE_RESOLVE_INDEX, JSFunction, promise_resolve) \ | 90 V(PROMISE_RESOLVE_INDEX, JSFunction, promise_resolve) \ |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 #endif | 531 #endif |
| 535 | 532 |
| 536 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); | 533 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); |
| 537 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); | 534 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); |
| 538 }; | 535 }; |
| 539 | 536 |
| 540 } // namespace internal | 537 } // namespace internal |
| 541 } // namespace v8 | 538 } // namespace v8 |
| 542 | 539 |
| 543 #endif // V8_CONTEXTS_H_ | 540 #endif // V8_CONTEXTS_H_ |
| OLD | NEW |