请在 2024 Clojure 状态调查! 中分享您的看法。

欢迎!请参阅 关于 页面获取更多关于如何使用本站的信息。

+1 投票
ClojureScript
重新标记

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

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

错误信息: 语法错误:意外的符号 '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
0 投票
...