-- This Script is Part of the Prometheus Obfuscator by levno-710 -- -- function_literal.lua -- -- This Script contains the expression handler for the FunctionLiteralExpression local Ast = require("prometheus.ast"); return function(self, expression, funcDepth, numReturns) local scope = self.activeBlock.scope; local regs = {}; for i = 1, numReturns do if i == 1 then regs[i] = self:compileFunction(expression, funcDepth); else regs[i] = self:allocRegister(); self:addStatement(self:setRegister(scope, regs[i], Ast.NilExpression()), {regs[i]}, {}, false); end end return regs; end;