Skip to content

Commit df4959f

Browse files
author
dnolen
committed
just emit call if for some reason we haven't already optimized
1 parent 004107a commit df4959f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/clojure/cljs/compiler.cljc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,9 +1047,7 @@
10471047
f "(" (comma-sep args) "))")
10481048
(emits "(" f fprop " ? " f fprop "(" (comma-sep args) ") : "
10491049
f ".call(" (comma-sep (cons "null" args)) "))")))
1050-
(if ana/*fn-invoke-direct*
1051-
(emits f "(" (comma-sep args) ")")
1052-
(emits f ".call(" (comma-sep (cons "null" args)) ")")))))))
1050+
(emits f ".call(" (comma-sep (cons "null" args)) ")"))))))
10531051

10541052
(defmethod emit* :new
10551053
[{:keys [ctor args env]}]

0 commit comments

Comments
 (0)