On Wed, Mar 22, 2017 at 7:34 PM, Hanyun Tao <[email protected]> wrote: > I'm confused about your example, why would the first comparison 'f1==f2' > return false if they refer to the same function?
Because they refer to different function objects. Setting `f1.x = 42` won't magically make .x appear on f2. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
