mirror of
https://github.com/Ed94/pikuma_ps1.git
synced 2026-07-13 04:41:26 -07:00
16 lines
338 B
Lua
16 lines
338 B
Lua
-- passes/static_analysis.lua
|
|
--
|
|
-- [FUTURE] Per-atom static-analysis checks. Stub for now; the upcoming
|
|
-- static_analysis_atoms_20260708 track will deliver the 5 (+1) checks.
|
|
|
|
--- @class M
|
|
|
|
local M = {}
|
|
|
|
--- @param ctx PassCtx
|
|
--- @return PassResult
|
|
function M.run(ctx)
|
|
return { outputs = {}, errors = {}, warnings = {} }
|
|
end
|
|
|
|
return M |