File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed
src/cider/nrepl/middleware Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 158
158
:exclude-namespaces [cider.nrepl.middleware.test-filter-tests]
159
159
:ignored-faults {:unused-ret-vals-in-try {cider.nrepl.middleware.profile-test [{:line 25 }]}
160
160
; ; This usage of `proxy` can't avoid reflection warnings given that the `proxy` construct dispatches based on name only:
161
- :reflection {cider.nrepl.middleware.out [{:line 55 }
162
- {:line 57 }
163
- {:line 59 }
164
- {:line 61 }
165
- {:line 65 }]}
161
+ :reflection {cider.nrepl.middleware.out [{:line 54 }
162
+ {:line 56 }
163
+ {:line 58 }
164
+ {:line 60 }
165
+ {:line 62 }
166
+ {:line 64 }]}
166
167
:suspicious-test {cider.nrepl.middleware.profile-test [{:line 25 }]}}}}]})
Original file line number Diff line number Diff line change 18
18
19
19
(declare unsubscribe-session )
20
20
21
- (defn original-output
22
- " Store the values of the original output streams so we can refer to them."
23
- ^PrintWriter
24
- [k]
25
- ({:out *out*
26
- :err *err*} k))
21
+ (defonce original-output
22
+ ^{:doc " Store the values of the original output streams so we can refer to them.
23
+ Please do not inline; they must not be recomputed at runtime." }
24
+ {:out *out*
25
+ :err *err*})
27
26
28
27
(defmacro with-out-binding
29
28
" Run body with v bound to the output stream of each msg in msg-seq.
You can’t perform that action at this time.
0 commit comments