| 393 | |
| 394 | template <typename T> |
| 395 | Local<Object> FunctionCallbackInfo<T>::This() const { |
| 396 | // values_ points to the first argument (not the receiver). |
| 397 | return Local<Object>(reinterpret_cast<Object*>(values_ - 1)); |
| 398 | } |
| 399 | |
| 400 | template <typename T> |
| 401 | Local<Object> FunctionCallbackInfo<T>::Holder() const { |
no outgoing calls