So I'm looking to get into v8 contribution, and looking at the list of issues, this one is low priority, and seems quite accessible for a 1st eventual commit.
I started looking in the code, and found that accessors.cc handles returning the arguments, and it indeed creates a new object every time the `arguments` property is accessed. To solve the issue, I thought making a new property on the Function object, being the argument, and only building it once. (then return the existing `Handle<JSObject> arguments` when further accessed.) However, I couldn't find the Function class, or where it's used. My questions: is it the right way to go, and where is the class handling the Function objects? -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" 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.
