请在2024年Clojure状态调查中分享您的想法!

欢迎!请查看关于页面获取更多信息。

+1
ClojureScript
重新标记

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

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

我得到:SyntaxError: Unexpected 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创建一个问题。谢谢!

一般而言,我们建议人们在这里提问 - 通常大多数用户没有 Jira 账号(这些资源有限,因此我们仅将 Jira 账号保留给提交补丁的贡献者)。所以这实际上是我们(维护者)的责任。相关流程文档在此处:https://clojure.org/community/contributing#_reporting_problems_and_requesting_enhancements
0
...