Status: New
Owner: ----

New issue 764 by coldredlemur: Incorrect stack trace.
http://code.google.com/p/v8/issues/detail?id=764

This script does not seem to produce the correct output:

  function f() {
    JSON.parse(undefined);
  }

  function g() {
    try {
      f();
    } catch (err) {
      throw err;
    }
  }

  g();


You would expect f() to show up in the stacktrace. Firefox reports:

  f()@http://getfirebug.com/:72 g()@http://getfirebug.com/:73
  ("with(_FirebugCommandLine){g();\n};")@http://getfirebug.com/:71
("with(_FirebugCommandLine){g();\n};")@http://getfirebug.com/:71 _firebugEvalEvent([object Event])@http://getfirebug.com/:60

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

Reply via email to