trying to get coverage analysis to reasonable time

This commit is contained in:
Michael Freno
2025-11-20 14:27:34 -05:00
parent d0357672db
commit 92068d5315
17 changed files with 3011 additions and 380 deletions

View File

@@ -1,3 +1,6 @@
-- Lua 5.2+ compatibility for unpack
local unpack = table.unpack or unpack
local Cache = {
canvases = {},
quads = {},
@@ -368,7 +371,9 @@ end
--- Initialize Blur module with dependencies
---@param deps table Dependencies: { ErrorHandler = ErrorHandler? }
function Blur.init(deps)
Blur._ErrorHandler = deps.ErrorHandler
if type(deps) == "table" then
Blur._ErrorHandler = deps.ErrorHandler
end
end
Blur.Cache = Cache