Emmet.Engine.EngineCompiler.GetFunctionWrapper C# (CSharp) Method

GetFunctionWrapper() private method

private GetFunctionWrapper ( JSFunction callback ) : V8Function
callback JSFunction
return V8.Net.V8Function
        private V8Function GetFunctionWrapper(JSFunction callback)
        {
            return _engine.CreateFunctionTemplate().GetFunctionObject(callback);
        }
    }