We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f6d7b commit 85bab07Copy full SHA for 85bab07
src/main/cljs/cljs/spec/test.cljc
@@ -51,7 +51,7 @@ returns the set of all symbols naming vars in those nses."
51
(let [v (ana-api/resolve &env s)]
52
(when v
53
(swap! instrumented-vars conj (:name v))
54
- `(let [checked# (instrument-1* ~s (var ~s) ~opts)]
+ `(let [checked# (cljs.spec.test/instrument-1* ~s (var ~s) ~opts)]
55
(when checked# (set! ~s checked#))
56
'~(:name v)))))
57
@@ -60,7 +60,7 @@ returns the set of all symbols naming vars in those nses."
60
61
62
(swap! instrumented-vars disj (:name v))
63
- `(let [raw# (unstrument-1* ~s (var ~s))]
+ `(let [raw# (cljs.spec.test/unstrument-1* ~s (var ~s))]
64
(when raw# (set! ~s raw#))
65
66
0 commit comments