Updates:
        Status: Assigned
        Owner: [email protected]

Comment #1 on issue 1647 by [email protected]: Immediately called function turns to undefined
http://code.google.com/p/v8/issues/detail?id=1647

Cleaned up repro:


// Flags: --allow-natives-syntax

var t = { foo: function() {} };

var f = (function bar() {
  t.foo();
  assertEquals("function", typeof bar);
});

for (var i = 0; i < 10; i++) f();
%OptimizeFunctionOnNextCall(f);
t.number = 2;
f();


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to