欢迎!请参阅关于页面获取更多有关如何使用本站的信息。
相关讨论- https://github.com/clojure-emacs/cider/issues/2099#issuecomment-661940099
(ns user (:require [cljs.analyzer :as analyzer])) (let [ns-env (assoc-in (analyzer/empty-env) [:ns [:name]] 'cljs.user)] (analyzer/macroexpand-1 ns-env `(defn ~'foo [~'x] ~'x))) ;; (clojure.core/defn foo [x] x) (macroexpand-1 `(defn ~'foo [~'x] ~'x)) ;; (def foo (clojure.core/fn ([x] x)))
您需要绑定 cljs.env/*compiler* 绑定(例如通过 cljs.env/with-compiler-env)以及相关的已分析的命名空间(例如 cljs.core)。
cljs.env/*compiler*
cljs.env/with-compiler-env
cljs.core
我不知道您需要做的确切步骤,但实质上您只是缺少编译环境(这不等同于宏展开调用本身传递的环境)。