-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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`
- Loading branch information
1 parent
e74d48d
commit 47a7bfd
Showing
4 changed files
with
20 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
(ns single-seg-macros) | ||
|
||
(defmacro test-macro [a b] | ||
`(+ ~a ~b)) |