Status: Accepted
Owner: [email protected]
Labels: Type-Bug Priority-High

New issue 269 by [email protected]: Debugger crashes when stepping into  
apply()
http://code.google.com/p/v8/issues/detail?id=269

Running the following code with active debugger (e.g. in D8 or Chrome with
debugger open) and performing step-in twice causes a crash.

function g() {
}

function f() {
   debugger;
   g.apply(null, ['']);
}

f()

In debug mode the following assertion is hit

#
# Fatal error in c:\prj\v8\edge-ws1\src\ic.h, line 165
# CHECK(target()->is_call_stub()) failed
#

The target is of kind KEYED_LOAD_IC (4) and not CALL_IC (5) as expected.



--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

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

Reply via email to