ArgGetThis() private method

private ArgGetThis ( IntPtr callingArgsPtr ) : Espresso.JsValue
callingArgsPtr System.IntPtr
return Espresso.JsValue
        public object GetThisArg()
        {
            JsValue output = new JsValue();

            NativeV8JsInterOp.ArgGetThis(this.metArgsPtr, ref output);
            return(this.context.Converter.FromJsValue(ref output));
        }
        public object GetThisArg()
        {
            var value = NativeV8JsInterOp.ArgGetThis(this.metArgsPtr);

            return(this.context.Converter.FromJsValue(value));
        }