We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bf3f4 commit 5612bf6Copy full SHA for 5612bf6
test/clj/cljs/compiler_tests.clj
@@ -58,10 +58,16 @@
58
(comp/emit
59
(ana/analyze aenv
60
'(defn foo ([a]) ([a b])))))
61
+ )
62
- (env/with-compiler-env cenv
63
- (comp/munge
64
- (comp/lazy-load?
+;; CLJS-1225
+
65
+(comment
66
+ (binding [ana/*cljs-static-fns* true]
67
+ (env/with-compiler-env cenv
68
+ (comp/emit
69
- '(defn foo ([a]) ([a b]))))))
70
+ '(defn incme []
71
+ (let [incme (fn [a queue & args])]
72
+ (println (incme 1 [1] 1 1))))))))
73
)
0 commit comments