blob: 71a0f60456a5ce9d8b1cfde025d185d96ca8531d [file] [log] [blame]
Ben Murdochda12d292016-06-02 14:46:10 +01001// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "src/api-arguments.h"
6
7namespace v8 {
8namespace internal {
9
10Handle<Object> FunctionCallbackArguments::Call(FunctionCallback f) {
11 Isolate* isolate = this->isolate();
Ben Murdochc5610432016-08-08 18:44:38 +010012 RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::FunctionCallback);
Ben Murdochda12d292016-06-02 14:46:10 +010013 VMState<EXTERNAL> state(isolate);
14 ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f));
Ben Murdochc5610432016-08-08 18:44:38 +010015 FunctionCallbackInfo<v8::Value> info(begin(), argv_, argc_);
Ben Murdochda12d292016-06-02 14:46:10 +010016 f(info);
17 return GetReturnValue<Object>(isolate);
18}
19
20Handle<JSObject> PropertyCallbackArguments::Call(
21 IndexedPropertyEnumeratorCallback f) {
22 Isolate* isolate = this->isolate();
Ben Murdochc5610432016-08-08 18:44:38 +010023 RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::PropertyCallback);
Ben Murdochda12d292016-06-02 14:46:10 +010024 VMState<EXTERNAL> state(isolate);
25 ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f));
26 PropertyCallbackInfo<v8::Array> info(begin());
27 f(info);
28 return GetReturnValue<JSObject>(isolate);
29}
30
31} // namespace internal
32} // namespace v8