On Tue, Apr 10, 2012 at 6:21 PM, David Nolen <dnolen.li...@gmail.com> wrote:

> I've merged these changes in master. I've also added another change that
> results in yet another large perf boost:
>
> - direct invocation of known fns instead of going through .call
>

Not sure whether this is of interest, but in IE built-in functions like
window.alert don't actually have a Function prototype, so:  (js/alert
"Hello")  fails in IE because it tries to invoke window.alert.call, which
is undefined.

(From what I can gather, those built-in functions are permitted to behave
like this by the spec.)

Anyway, I was wondering if there was anyway that this could be extended to
cover these calls somehow?

-- 
Dave

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to