fix a bear of a bug with accidentally persisting loop contexts

This commit is contained in:
Scott Richmond 2024-06-06 15:41:33 -04:00
parent 125a299b10
commit c7f99d35a6
5 changed files with 55 additions and 52 deletions

View File

@ -44,8 +44,7 @@
(print "with " (b/show value)) (print "with " (b/show value))
(print "expecting to match one of") (print "expecting to match one of")
(print (b/pretty-patterns called)) (print (b/pretty-patterns called))
(print source-line) (print source-line))
)
(defn- let-no-match [e] (defn- let-no-match [e]
(print "Ludus panicked! no match") (print "Ludus panicked! no match")
@ -63,16 +62,14 @@
(def source-line (get-line source line-num)) (def source-line (get-line source line-num))
(print "Ludus panicked! " msg) (print "Ludus panicked! " msg)
(print "on line " line-num " in " input) (print "on line " line-num " in " input)
(print source-line) (print source-line))
)
(defn- unbound-name [e] (defn- unbound-name [e]
(def {:line line-num :source source :lexeme name :input input} (get-in e [:node :token])) (def {:line line-num :source source :lexeme name :input input} (get-in e [:node :token]))
(def source-line (get-line source line-num)) (def source-line (get-line source line-num))
(print "Ludus panicked! unbound name " name) (print "Ludus panicked! unbound name " name)
(print "on line " line-num " in " input) (print "on line " line-num " in " input)
(print source-line) (print source-line))
)
(defn runtime-error [e] (defn runtime-error [e]
(when (= :string (type e)) (print e) (break e)) (when (= :string (type e)) (print e) (break e))

View File

@ -307,7 +307,7 @@
(def the-set @{:^type :set}) (def the-set @{:^type :set})
(each member members (each member members
(def value (interpret member ctx)) (def value (interpret member ctx))
(set (the-set member) true)) (set (the-set value) true))
the-set) the-set)
(defn- list [ast ctx] (defn- list [ast ctx]
@ -510,13 +510,13 @@
# (print "looping!") # (print "looping!")
(def data (ast :data)) (def data (ast :data))
(def args (interpret (data 0) ctx)) (def args (interpret (data 0) ctx))
(when (ast :match) (break ((ast :match) 0 args))) # this doesn't work: context persists between different interpretations
# we want functions to work this way, but not loops (I think)
# (when (ast :match) (break ((ast :match) 0 args)))
(def clauses (data 1)) (def clauses (data 1))
(def len (length clauses)) (def len (length clauses))
(def loop-ctx @{:^parent ctx}) (var loop-ctx @{:^parent ctx})
(defn match-fn [i args] (defn match-fn [i args]
# (print "calling inner loop fn")
# (print "for the " i "th time")
(when (= len i) (when (= len i)
(error {:node ast :value args :msg "no match: loop"})) (error {:node ast :value args :msg "no match: loop"}))
(def clause (clauses i)) (def clause (clauses i))
@ -647,10 +647,7 @@
# (do # (do
(comment (comment
(set source ` (set source `
fn call_unary (f, arg) -> f (arg)
fn my_add (x, y) -> add (x, y)
let add5 = my_add (5, _)
call_unary (add5, 10)
`) `)
(def result (run)) (def result (run))
) )

View File

@ -7,17 +7,17 @@
(import /errors :as e) (import /errors :as e)
(def pkg (do (def pkg (do
(def prelude-ctx @{:^parent {"base" b/base}}) (def pre-ctx @{:^parent {"base" b/base}})
(def prelude-src (slurp "prelude.ld")) (def pre-src (slurp "prelude.ld"))
(def prelude-scanned (s/scan prelude-src :prelude)) (def pre-scanned (s/scan pre-src :prelude))
(def prelude-parsed (p/parse prelude-scanned)) (def pre-parsed (p/parse pre-scanned))
(def parse-errors (prelude-parsed :errors)) (def parse-errors (pre-parsed :errors))
(when (any? parse-errors) (each err parse-errors (e/parse-error err)) (break :error)) (when (any? parse-errors) (each err parse-errors (e/parse-error err)) (break :error))
(def prelude-validated (v/valid prelude-parsed prelude-ctx)) (def pre-validated (v/valid pre-parsed pre-ctx))
(def validation-errors (prelude-validated :errors)) (def validation-errors (pre-validated :errors))
(when (any? validation-errors) (each err validation-errors (e/validation-error err)) (break :error)) (when (any? validation-errors) (each err validation-errors (e/validation-error err)) (break :error))
(try (try
(i/interpret (prelude-parsed :ast) prelude-ctx) (i/interpret (pre-parsed :ast) pre-ctx)
([err] (e/runtime-error err) :error)))) ([err] (e/runtime-error err) :error))))
(def ctx (do (def ctx (do
@ -28,15 +28,16 @@
(set (ctx "^type") nil) (set (ctx "^type") nil)
ctx)) ctx))
(def post/src (slurp "postlude.ld")) # (def post/src (slurp "postlude.ld"))
# (def post/ast (do
# (def post-ctx @{:^parent ctx})
# (def post-scanned (s/scan post/src :postlude))
# (def post-parsed (p/parse post-scanned))
# (def parse-errors (post-parsed :errors))
# (when (any? parse-errors) (each err parse-errors (e/parse-error err)) (break :error))
# (def post-validated (v/valid post-parsed post-ctx))
# (def validation-errors (post-validated :errors))
# (when (any? validation-errors) (each err validation-errors (e/validation-error err)) (break :error))
# post-parsed))
(def post/ast (do
(def post-ctx @{:^parent ctx})
(def post-scanned (s/scan post/src :postlude))
(def post-parsed (p/parse post-scanned))
(def parse-errors (post-parsed :errors))
(when (any? parse-errors) (each err parse-errors (e/parse-error err)) (break :error))
(def post-validated (v/valid prelude-parsed post-ctx))
(def validation-errors (prelude-validated :errors))
(when (any? validation-errors) (each err validation-errors (e/validation-error err)) (break :error))
post-parsed))

View File

@ -21,6 +21,7 @@ This new scene will have to return a JSON POJSO:
) )
(defn run [source] (defn run [source]
(when (= :error prelude/pkg) (error "could not load prelude"))
(def ctx @{:^parent prelude/ctx}) (def ctx @{:^parent prelude/ctx})
(def errors @[]) (def errors @[])
(def draw @[]) (def draw @[])
@ -40,18 +41,18 @@ This new scene will have to return a JSON POJSO:
(when (any? (validated :errors)) (when (any? (validated :errors))
(break (each err (validated :errors) (break (each err (validated :errors)
(e/validation-error err)))) (e/validation-error err))))
(setdyn :out console) # (setdyn :out console)
(print "starting ludus run")
(try (try
(set result (b/show (i/interpret (parsed :ast) ctx))) (set result (i/interpret (parsed :ast) ctx))
([err] (setdyn :out stdout) (e/runtime-error err))) ([err] (comment setdyn :out stdout) (e/runtime-error err)))
(setdyn :out stdout) # (setdyn :out stdout)
(set (out :result) result) (set (out :result) result)
result) result)
(do (do
(def source ` (def source `
forward! (100)
p5_calls
`) `)
(-> source run) (-> source run)
@ -63,3 +64,4 @@ Next up:
* testing turtle graphics * testing turtle graphics
) )

View File

@ -188,13 +188,16 @@ fn set? {
fn fold { fn fold {
"Folds a list." "Folds a list."
(f as :fn, xs as :list) -> fold (f, xs, f ()) (f as :fn, xs as :list) -> fold (f, xs, f ())
(f as :fn, xs as :list, root) -> loop (root, first (xs), rest (xs)) with { (f as :fn, xs as :list, root) -> {
(prev, curr, []) -> f (prev, curr) base :print! (("folding ", xs, " with ", f))
(prev, curr, remaining) -> recur ( loop (root, first (xs), rest (xs)) with {
f (prev, curr) (prev, curr, []) -> f (prev, curr)
first (remaining) (prev, curr, remaining) -> recur (
rest (remaining) f (prev, curr)
) first (remaining)
rest (remaining)
)
}
} }
} }
@ -237,7 +240,7 @@ fn append {
fn concat { fn concat {
"Combines two lists, strings, or sets." "Combines two lists, strings, or sets."
(x as :string, y as :string) -> base :str (x, y) (x as :string, y as :string) -> base :concat (x, y)
(xs as :list, ys as :list) -> base :concat (xs, ys) (xs as :list, ys as :list) -> base :concat (xs, ys)
(xs as :set, ys as :set) -> base :concat (xs, ys) (xs as :set, ys as :set) -> base :concat (xs, ys)
(xs, ys, ...zs) -> fold (concat, zs, concat (xs, ys)) (xs, ys, ...zs) -> fold (concat, zs, concat (xs, ys))
@ -261,7 +264,9 @@ fn add_msg! {
"Adds a message to the console." "Adds a message to the console."
(msg as :string) -> update! (console, append (_, msg)) (msg as :string) -> update! (console, append (_, msg))
(msgs as :list) -> { (msgs as :list) -> {
base :print! (("adding msg", msgs))
let msg = do msgs > map (string, _) > join let msg = do msgs > map (string, _) > join
base :print! (("msg: ", msg))
update! (console, append (_, msg)) update! (console, append (_, msg))
} }
} }
@ -269,7 +274,7 @@ fn add_msg! {
fn print! { fn print! {
"Sends a text representation of Ludus values to the console." "Sends a text representation of Ludus values to the console."
(...args) -> { (...args) -> {
base :print (args) base :print! (args)
add_msg! (args) add_msg! (args)
:ok :ok
} }
@ -1048,6 +1053,7 @@ box bgcolor = colors :black
fn add_call! (call) -> update! (p5_calls, append (_, call)) fn add_call! (call) -> update! (p5_calls, append (_, call))
fn add_command! (command) -> { fn add_command! (command) -> {
print! ("adding command", command)
update! (turtle_commands, append (_, command)) update! (turtle_commands, append (_, command))
let prev = do turtle_states > unbox > last let prev = do turtle_states > unbox > last
let curr = apply_command (prev, command) let curr = apply_command (prev, command)
@ -1070,7 +1076,7 @@ fn render_turtle! () -> {
then { then {
let (r, g, b, a) = turtle_color let (r, g, b, a) = turtle_color
add_call! ((:fill, r, g, b, a)) add_call! ((:fill, r, g, b, a))
let #{heading, :position (x, y)} = state let #{heading, :position (x, y), ...} = state
let first = mult ((0, 1), turtle_radius) let first = mult ((0, 1), turtle_radius)
let (x1, y1) = first let (x1, y1) = first
let (x2, y2) = rotate (first, turtle_angle) let (x2, y2) = rotate (first, turtle_angle)
@ -1224,13 +1230,13 @@ fn apply_command {
(:right, turns) -> update (state, :heading, add (_, turns)) (:right, turns) -> update (state, :heading, add (_, turns))
(:left, turns) -> update (state, :heading, sub (_, turns)) (:left, turns) -> update (state, :heading, sub (_, turns))
(:forward, steps) -> { (:forward, steps) -> {
let #{heading, position} = state let #{heading, position, ...} = state
let unit = heading/vector (heading) let unit = heading/vector (heading)
let vect = mult (steps, unit) let vect = mult (steps, unit)
update (state, :position, add (vect, _)) update (state, :position, add (vect, _))
} }
(:back, steps) -> { (:back, steps) -> {
let #{heading, position} = state let #{heading, position, ...} = state
let unit = heading/vector (heading) let unit = heading/vector (heading)
let vect = mult (steps, unit) let vect = mult (steps, unit)
update (state, :position, sub (_, vect)) update (state, :position, sub (_, vect))