Skip to content

Commit

Permalink
Merge branch 'master' into compile-opt
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpakin committed Nov 25, 2024
2 parents a6ea38a + 2bceba4 commit 0fb1773
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
9 changes: 2 additions & 7 deletions src/boot/boot.janet
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,6 @@
,v
(,error ,(if err err (string/format "assert failure in %j" x))))))

(defmacro assertf
"Convenience macro that combines `assert` and `string/format`."
[x & args]
~(as-macro ,assert ,x (,string/format ,;args)))

(defmacro defdyn
``Define an alias for a keyword that is used as a dynamic binding. The
alias is a normal, lexically scoped binding that can be used instead of
Expand Down Expand Up @@ -210,14 +205,14 @@
(error (string/format fmt ;args)))

(defmacro assertf
"Throw an error if x is not truthy. Will not evaluate `err` if x is truthy."
"Convenience macro that combines `assert` and `string/format`."
[x fmt & args]
(def v (gensym))
~(do
(def ,v ,x)
(if ,v
,v
(,error (,string/format ,fmt ,;args)))))
(,errorf ,fmt ,;args))))

(defmacro default
``Define a default value for an optional argument.
Expand Down
3 changes: 1 addition & 2 deletions test/suite-boot.janet
Original file line number Diff line number Diff line change
Expand Up @@ -998,11 +998,10 @@
(setdyn *debug* nil)

# issue #1516
(assert (assertf true) "assertf 1 argument")
(assert-error "assertf 1 argument" (macex '(assertf true)))
(assert (assertf true "fun message") "assertf 2 arguments")
(assert (assertf true "%s message" "mystery") "assertf 3 arguments")
(assert (assertf (not nil) "%s message" "ordinary") "assertf not nil")
(assert-error "assertf error 1" (assertf false))
(assert-error "assertf error 2" (assertf false "fun message"))
(assert-error "assertf error 3" (assertf false "%s message" "mystery"))
(assert-error "assertf error 4" (assertf nil "%s %s" "alice" "bob"))
Expand Down

0 comments on commit 0fb1773

Please sign in to comment.