1

Fix missing parameter

This commit is contained in:
Alex Yatskov 2025-01-18 12:57:03 -08:00
parent 6b1b4d4823
commit 6ebe65a9e4

View File

@ -105,7 +105,7 @@ end
function Param:hit_search(trace, depth)
local index = trace[depth]
return self.cells[index]:hit_search(depth)
return self.cells[index]:hit_search(trace, depth)
end
function Param:write(builder, wrapped)