wip: lua metaprogram rework

This commit is contained in:
2026-07-09 18:45:36 -04:00
parent 98e27c2815
commit 1209172649
8 changed files with 925 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
-- 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