(fn save-require-meta [from to scope]
"When destructuring, save module name if local is bound to a `require' call.
Doesn't do any linting on its own; just saves the data for other linters."
(when (and (sym? to) (not (multi-sym? to)) (list? from)
(sym? (. from 1)) (= :require (tostring (. from 1)))
(= :string (type (. from 2))))
(let [meta (. scope.symmeta (tostring to))]
(set meta.required (tostring (. from 2))))))
(fn check-module-fields [symbol scope]
"When referring to a field in a local that's a module, make sure it exists."
(let [[module-local field] (or (multi-sym? symbol) [])
module-name (and module-local (. scope.symmeta
(tostring module-local) :required))
module (and module-name (require module-name))]
(assert-compile (or (= module nil) (not= (. module field) nil))
(string.format "Missing field %s in module %s"
field module-name) symbol)))
(fn arity-check? [module] (-?> module getmetatable (. :arity-check?)))
(fn arity-check-call [[f & args] scope]
"Perform static arity checks on static function calls in a module."
(let [arity (# args)
last-arg (. args arity)
[f-local field] (or (multi-sym? f) [])
module-name (and f-local (. scope.symmeta (tostring f-local) :required))
module (and module-name (require module-name))]
(when (and (arity-check? module) debug debug.getinfo
(not (varg? last-arg)) (not (list? last-arg)))
(assert-compile (= (type (. module field)) :function)
(string.format "Missing function %s in module %s"
field module-name) f)
(match (debug.getinfo (. module field))
{: nparams :what "Lua" :isvararg true}
(assert-compile (<= nparams (# args))
(: "Called %s.%s with %s arguments, expected %s+"
:format f-local field arity nparams) f)
{: nparams :what "Lua" :isvararg false}
(assert-compile (= nparams (# args))
(: "Called %s.%s with %s arguments, expected %s"
:format f-local field arity nparams) f)))))
(fn check-unused [ast scope]
(each [symname (pairs scope.symmeta)]
(assert-compile (or (. scope.symmeta symname :used) (symname:find "^_"))
(string.format "unused local %s" symname) ast)))
{:destructure save-require-meta
:symbol-to-expression check-module-fields
:call arity-check-call
:fn check-unused
:do check-unused}