Home | History | Annotate | Download | only in regress

Lines Matching full:backtrace

32 // Make sure that the backtrace command can be processed when the receiver is
67 // The expected backtrace is
74 // Get the backtrace.
76 json = '{"seq":0,"type":"request","command":"backtrace"}'
78 var backtrace = response.body();
79 assertEquals(2, backtrace.totalFrames);
80 assertEquals(2, backtrace.frames.length);
82 assertEquals("g", response.lookup(backtrace.frames[0].func.ref).name);
83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name);
100 // Break on the exception to do a backtrace with undefined as receiver.