2024 Clojure 状态调查!中分享您的想法。

欢迎!有关如何工作的更多信息,请参阅关于页面。

+1
ClojureScript
重新标记

在ClojureScript 1.10.597中,当我定义一个返回带有元数据的匿名fn的多方法时,我会得到一个语法错误。

(defmulti f identity)
(defmethod f :a [x] ^:m #(vector x))

错误信息是:"语法错误:意外的'token' 'return'"
相关编译的js如下

... cljs.core.with_meta(return (function (){...

通过http://clojurescript.net/的REPL会话

cljs.user=> (defmulti f identity)
#'cljs.user/f
cljs.user=> (defmethod f :a [x] ^:m #(vector x))
Unexpected token 'return'
SyntaxError: Unexpected token 'return'
    at cljs$js$js_eval (http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:53434:15)
    at http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:54766:279
    at http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:54771:22
    at cljs$js$eval_str_STAR__$_compile_loop (http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:54781:24)
    at Object.cljs$js$eval_str_STAR_ [as eval_str_STAR_] (http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:54796:49)
    at Function.cljs.js.eval_str.cljs$core$IFn$_invoke$arity$5 (http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:54854:18)
    at Function.cljs_bootstrap.core.read_eval_print.cljs$core$IFn$_invoke$arity$3 (http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:58775:33)
    at Function.cljs_bootstrap.core.read_eval_print.cljs$core$IFn$_invoke$arity$2 (http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:58706:46)
    at Object.cljs_bootstrap$core$read_eval_print [as read_eval_print] (http://kanaka.github.io/cljs-bootstrap/web/repl-web.js:58695:50)
    at handler (http://kanaka.github.io/cljs-bootstrap/web/repl-main.js:47:29)
    at e (http://kanaka.github.io/cljs-bootstrap/web/jqconsole.min.js:1:16732)
    at i._HandleEnter (http://kanaka.github.io/cljs-bootstrap/web/jqconsole.min.js:1:16911)
    at i._HandleKey (http://kanaka.github.io/cljs-bootstrap/web/jqconsole.min.js:1:15169)
    at HTMLTextAreaElement.<anonymous> (http://kanaka.github.io/cljs-bootstrap/web/jqconsole.min.js:1:134)
    at HTMLTextAreaElement.dispatch (https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js:2:38053)
    at HTMLTextAreaElement.u (https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js:2:33916)
cljs.user=> 

可以通过添加额外的let来绕过这个问题

(defmethod f :a [x] (let [g ^:m #(vector x)] g))

尽管如此,我们应该将这个问题记录到Jira中。

2 个回答

0

是的,请打开一个JIRA问题。谢谢!

David,通常来说,我们会鼓励人们在这里提问——大多数用户没有 Jira 账号(这些是一种有限资源,所以我们只保留 Jira 账号供提交补丁的贡献者使用)。因此,这实际上是我们(维护者)的责任。流程文档在此处:[https://clojure.org/community/contributing#_reporting_problems_and_requesting_enhancements](https://clojure.org/community/contributing#_reporting_problems_and_requesting_enhancements)
0
by
...