Skip to content

Commit

Permalink
Separate some vars defined in RT context
Browse files Browse the repository at this point in the history
  • Loading branch information
jeaye committed Jan 20, 2025
1 parent 82b38a1 commit d3a1d13
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions compiler+runtime/src/jank/clojure/core.jank
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
; Defined in runtime::context ctor.
(def ^:dynamic *ns*)
(def ^:dynamic *assert*)
(def ^:dynamic *compile-files*)
(def ^:dynamic *file*)

(def ^:dynamic *in* nil)
(def ^:dynamic *out* nil)
(def ^:dynamic *command-line-args* nil)
(def ^:dynamic *warn-on-reflection* nil)
(def ^:dynamic *file* nil)
(def ^:dynamic *compile-path* nil)
(def ^:dynamic *compile-files* nil)
(def ^:dynamic *unchecked-math* nil)
(def ^:dynamic *compiler-options* nil)
(def ^:dynamic *err* nil)
Expand All @@ -14,7 +17,6 @@
(def ^:dynamic *print-dup* nil)
(def ^:dynamic *print-readably* nil)
(def ^:dynamic *read-eval* nil)
(def ^:dynamic *assert* true)

; Syntax quoting.
(def unquote
Expand Down

0 comments on commit d3a1d13

Please sign in to comment.