Esempio n. 1
0
        public IFunction CompileFunction(string functionPath, string moduleName, string functionHandler)
        {
            var binaryPath = compiler.Compile(functionPath, packagesSubPath);

            return(new CompiledFunction(moduleName, functionHandler, binaryPath));
        }