File tree 3 files changed +9
-7
lines changed
src/main/clojure/cljs/vendor/clojure/tools
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ cd src/main/clojure/cljs
7
7
8
8
DJSON_RELEASE=" 2.4.0"
9
9
TRANSIT_RELEASE=" 1.0.329"
10
- TREADER_RELEASE=" 1.3.6 "
10
+ TREADER_RELEASE=" 1.3.7 "
11
11
12
12
rm -rf data.json
13
13
git clone -b
" v$DJSON_RELEASE " --depth 1
[email protected] :clojure/data.json.git
Original file line number Diff line number Diff line change 378
378
(let [o (read* rdr true nil opts pending-forms)]
379
379
(if (instance? IMeta o)
380
380
(let [m (if (and line (seq? o))
381
- (assoc m :line line :column column)
381
+ (merge { :line line :column column} m )
382
382
m)]
383
383
(if (instance? IObj o)
384
384
(with-meta o (merge (meta o) m))
1022
1022
([] (read+string (source-logging-push-back-reader *in*)))
1023
1023
([stream] (read+string stream true nil ))
1024
1024
([^SourceLoggingPushbackReader stream eof-error? eof-value]
1025
- (let [o (log-source stream (read stream eof-error? eof-value))
1026
- s (.trim (str (:buffer @(.source-log-frames stream))))]
1025
+ (let [^StringBuilder buf (doto (:buffer @(.source-log-frames stream)) (.setLength 0 ))
1026
+ o (log-source stream (read stream eof-error? eof-value))
1027
+ s (.trim (str buf))]
1027
1028
[o s]))
1028
1029
([opts ^SourceLoggingPushbackReader stream]
1029
- (let [o (log-source stream (read opts stream))
1030
- s (.trim (str (:buffer @(.source-log-frames stream))))]
1030
+ (let [^StringBuilder buf (doto (:buffer @(.source-log-frames stream)) (.setLength 0 ))
1031
+ o (log-source stream (read opts stream))
1032
+ s (.trim (str buf))]
1031
1033
[o s])))
Original file line number Diff line number Diff line change 317
317
[reader f]
318
318
(let [frame (.source-log-frames ^SourceLoggingPushbackReader reader)
319
319
^StringBuilder buffer (:buffer @frame)
320
- new-frame (assoc-in @frame [ :offset ] (.length buffer))]
320
+ new-frame (assoc @frame :offset (.length buffer))]
321
321
(with-bindings {frame new-frame}
322
322
(let [ret (f )]
323
323
(if (instance? clojure.lang.IObj ret)
You can’t perform that action at this time.
0 commit comments