Skip to content

Commit 47a7bfd

Browse files
authored
CLJS-3413: Macros not loaded w/ single segment namespace loaded via :preloads (#229)
* test demonstrating that single segment macro namespaces by themselves are not a problem * if we cannot find a macro namespace in the current namespace try one more time w/ a global lookup * add clarifying comment about `:preloads` in `cljs.closure/build`
1 parent e74d48d commit 47a7bfd

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

src/main/clojure/cljs/analyzer.cljc

+6-2
Original file line numberDiff line numberDiff line change
@@ -3954,8 +3954,12 @@
39543954
:cljs [(identical? "clojure.repl" nstr) (find-macros-ns 'cljs.repl)])
39553955
#?@(:clj [(.contains nstr ".") (find-ns (symbol nstr))]
39563956
:cljs [(goog.string/contains nstr ".") (find-macros-ns (symbol nstr))])
3957-
:else (some-> env :ns :require-macros (get (symbol nstr)) #?(:clj find-ns
3958-
:cljs find-macros-ns)))))
3957+
:else
3958+
(or (some-> env :ns :require-macros (get (symbol nstr)) #?(:clj find-ns
3959+
:cljs find-macros-ns))
3960+
;; single segment namespace case
3961+
#?(:clj (find-ns (symbol nstr))
3962+
:cljs (find-macros-ns (symbol nstr)))))))
39593963

39603964
(defn get-expander* [sym env]
39613965
(when-not (or (some? (gets env :locals sym)) ; locals hide macros

src/main/clojure/cljs/closure.clj

+4
Original file line numberDiff line numberDiff line change
@@ -3081,6 +3081,10 @@
30813081
[(-compile (io/resource "cljs/nodejs.cljs")
30823082
(assoc opts :output-file "nodejs.js"))]))
30833083
deps/dependency-order
3084+
;; NOTE: :preloads are compiled *after*
3085+
;; user specified inputs. Thus user code cannot
3086+
;; depend on anything (i.e. fn/macros) defined
3087+
;; in preloads via global access pattern
30843088
(add-preloads opts)
30853089
remove-goog-base
30863090
add-goog-base

src/test/cljs/cljs/macro_test.cljs

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88

99
(ns cljs.macro-test
1010
(:refer-clojure :exclude [==])
11-
(:require [cljs.test :refer-macros [deftest is]])
11+
(:require [cljs.test :as test :refer-macros [deftest is]])
1212
(:use-macros [cljs.macro-test.macros :only [== sm-cljs-3027]])
13-
(:require-macros [cljs.macro-test.cljs2852]))
13+
(:require-macros [cljs.macro-test.cljs2852]
14+
[single-seg-macros]))
1415

1516
(deftest test-macros
1617
(is (= (== 1 1) 2)))
@@ -31,3 +32,6 @@
3132

3233
(deftest test-cljs-3027
3334
(is (= {"a" "b"} (sm-cljs-3027))))
35+
36+
(deftest test-cljs-3413
37+
(is (= 5 (single-seg-macros/test-macro 2 3))))

src/test/cljs/single_seg_macros.clj

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
(ns single-seg-macros)
2+
3+
(defmacro test-macro [a b]
4+
`(+ ~a ~b))

0 commit comments

Comments
 (0)