You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix assumption that all closure-compliant JS is goog.*
When using other Closure-compatible JS libs the compiler would
otherwise try to emit CLJS-styles invokes.
Expected:
somefn(1)
Actual:
somefn.cljs$core$IFn$_invoke$arity$1 ? ... : somefn.call(null, 1)
This is a CLJS idiom and should only be emitted if we have
analyzer data for the given namespace.
0 commit comments