On 2014/08/07 at 16:25:01, wingo wrote:

So this turns out to be because of a duplicate declaration of
ExtendArrayPrototype.  Cut and paste hulk stomp stomp!

Maybe we should stop introducing functions that are just called immediately?

Today:

function Init() {
  var x = ...
  ...
}
Init();

In a year

{
  let x = ...
  ...
}

In a month?

(function Init() {
  var x = ...
  ...
})();

https://codereview.chromium.org/446023002/

--
--
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.

Reply via email to