1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-28 23:10:40 +00:00
janet/test/suite0015.janet

56 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-02-01 08:39:24 +00:00
# test *debug* flags
(import ./helper :prefix "" :exit true)
(start-suite 15)
2023-02-01 10:46:36 +00:00
(assert (deep= (in (disasm (defn a [] (def x 10) x)) :symbolslots) nil)
"no symbolslots when *debug* is false")
2023-02-01 08:39:24 +00:00
(setdyn *debug* true)
(assert (deep= (in (disasm (defn a [] (def x 10) x)) :symbolslots)
@[[0 2147483647 0 "a"] [1 2147483647 1 "x"]])
"symbolslots when *debug* is true")
2023-02-01 08:39:24 +00:00
(setdyn *debug* false)
2023-02-01 20:12:42 +00:00
(setdyn *debug* true)
(defn a [arg]
(def x 10)
(do
(def y 20)
(def z 30)
(+ x y z)))
(def symbolslots (in (disasm a) :symbolslots))
(def f (asm (disasm a)))
(assert (deep= (in (disasm f) :symbolslots)
symbolslots)
"symbolslots survive disasm/asm")
(setdyn *debug* false)
# need to fix upvalues
(comment
(setdyn *debug* true)
(setdyn :pretty-format "%.40M")
(def f (fn [x] (fn [y] (+ x y))))
(assert (deep= (map last (in (disasm (f 10)) :symbolslots))
@["x" "y"])
"symbolslots upvalues")
(setdyn *debug* false)
)
2023-02-01 08:39:24 +00:00
(setdyn *debug* true)
(assert (deep= (in (disasm (defn a [arg]
2023-02-01 08:39:24 +00:00
(def x 10)
(do
(def y 20)
(def z 30)
(+ x y z)))) :symbolslots)
@[[-1 2147483647 0 "arg"]
[0 2147483647 1 "a"]
[1 2147483647 2 "x"]
[2 7 3 "y"]
[3 7 4 "z"]])
"arg & inner symbolslots")
2023-02-01 08:39:24 +00:00
(setdyn *debug* false)
(end-suite)