Home | History | Annotate | Download | only in mjsunit

Lines Matching full:backtrace

85       // The expected backtrace is
92 var backtrace;
100 // Get the backtrace.
102 json = '{"seq":0,"type":"request","command":"backtrace"}'
105 backtrace = response.body();
106 assertEquals(0, backtrace.fromFrame);
107 assertEquals(4, backtrace.toFrame);
108 assertEquals(4, backtrace.totalFrames);
109 var frames = backtrace.frames;
125 // Get backtrace with two frames.
126 json = '{"seq":0,"type":"request","command":"backtrace","arguments":{"fromFrame":1,"toFrame":3}}'
128 backtrace = response.body();
129 assertEquals(1, backtrace.fromFrame);
130 assertEquals(3, backtrace.toFrame);
131 assertEquals(4, backtrace.totalFrames);
132 var frames = backtrace.frames;
143 // Get backtrace with bottom two frames.
144 json = '{"seq":0,"type":"request","command":"backtrace","arguments":{"fromFrame":0,"toFrame":2, "bottom":true}}'
146 backtrace = response.body();
147 assertEquals(2, backtrace.fromFrame);
148 assertEquals(4, backtrace.toFrame);
149 assertEquals(4, backtrace.totalFrames);
150 var frames = backtrace.frames;
246 // Get the backtrace.
247 json = '{"seq":0,"type":"request","command":"backtrace"}'