增强错误提示后,您可以看到源通常使用 <cljs repl>
指示器来标识。
Clojure 中具有相同功能的源是 {{REPL}}。
比较
ClojureScript
cljs.user=> (ffirst 1) 执行错误 (Error) 在 (<cljs repl>:1)。1 不是 ISeqable
Clojure
user=> (ffirst 1) 执行错误 (IllegalArgumentException) 在 user/eval1 (REPL:1)。不知道如何从:java.lang.Long 创建 ISeq
此增强建议简化地使用 {{REPL}} 来引用源,就像在 Clojure 中做的那样。