I am using the inspector and I can set breakpoints for most functions 
without problem (first evaluate the function name and retrieve the function 
location property). This works in most cases but it fails in the sample 
below when the current frame is inside function a.

>From that point, I can resolve function b but can't resolve functions c and 
d (not even a itself).

Is this expected? If I change function a to call b and c, then I can 
resolve both.


a();


function a()
{
  console.log('a');
  b();
}


function b()
{
  console.log('b');
  c();
}


function c()
{
  console.log('c');
  d();
}


function d()
{
  console.log('d');
  return 1;
}



-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to