mirror of
https://github.com/janet-lang/janet
synced 2024-11-04 15:56:17 +00:00
Rename level const to not to shadow line in eval1
This commit is contained in:
parent
ab974c409d
commit
a4325372e2
@ -2210,12 +2210,12 @@
|
|||||||
(array/clear lints)
|
(array/clear lints)
|
||||||
(def res (compile source env where lints))
|
(def res (compile source env where lints))
|
||||||
(each [level line col msg] lints
|
(each [level line col msg] lints
|
||||||
(def l (get lint-levels level 0))
|
(def lvl (get lint-levels level 0))
|
||||||
(cond
|
(cond
|
||||||
(<= l lint-error) (do
|
(<= lvl lint-error) (do
|
||||||
(set good false)
|
(set good false)
|
||||||
(on-compile-error msg nil where (or line l) (or col c)))
|
(on-compile-error msg nil where (or line l) (or col c)))
|
||||||
(<= l lint-warning) (on-compile-warning msg level where (or line l) (or col c))))
|
(<= lvl lint-warning) (on-compile-warning msg level where (or line l) (or col c))))
|
||||||
(when good
|
(when good
|
||||||
(if (= (type res) :function)
|
(if (= (type res) :function)
|
||||||
(evaluator res source env where)
|
(evaluator res source env where)
|
||||||
|
Loading…
Reference in New Issue
Block a user