0

有人理解 ClojureScript 浏览器 repl 中的以下行为吗?(由引​​导工具链提供)

my.core> (require 'cljs.pprint)
nil
my.core> (cljs.pprint/pprint "one")
#object[TypeError TypeError: cljs.pprint is undefined]
No stacktrace available.
my.core> (cljs.pprint/pprint "one" "two" "three")
WARNING: Wrong number of args (3) passed to cljs.pprint/pprint at line 1 <cljs repl>
#object[TypeError TypeError: cljs.pprint is undefined]
No stacktrace available.

看起来,没有对 cljs.pprint/pprint 的引用,但是 repl 知道这个函数的数量。


这也可能有帮助:

my.core> (cljs.repl/dir cljs.pprint)
t_cljs$pprint28171
t_cljs$pprint28177
with-pprint-dispatch
with-pretty-writer
write
write-out
nil
4

1 回答 1

3

cider-repl-toggle-pretty-printing成功了。

于 2016-08-25T21:06:29.763 回答