Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Oct 10, 2024
1 parent b2d8c55 commit 0c97b56
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/sci/impl/parser.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
(:refer-clojure :exclude [read-string eval])
(:require
[clojure.string :as str]
[clojure.tools.reader.reader-types :as r]
[clojure.tools.reader.reader-types :as rt]
[edamame.core :as edamame]
[sci.impl.interop :as interop]
[sci.impl.types :as types]
[sci.impl.utils :as utils]
[clojure.tools.reader.reader-types :as rt]))
[sci.impl.utils :as utils]))

#?(:clj (set! *warn-on-reflection* true))

Expand Down Expand Up @@ -128,10 +127,10 @@
auto-resolve)))

(defn get-line-number [reader]
(r/get-line-number reader))
(rt/get-line-number reader))

(defn get-column-number [reader]
(r/get-column-number reader))
(rt/get-column-number reader))

(defn parse-next
([ctx r]
Expand Down

0 comments on commit 0c97b56

Please sign in to comment.