Home | History | Annotate | Download | only in src

Lines Matching refs:exec_state_

1076   this.exec_state_ = new ExecutionState(break_id);
1104 return this.exec_state_.frame(0).func();
1109 return this.exec_state_.frame(0).sourceLine();
1114 return this.exec_state_.frame(0).sourceColumn();
1119 return this.exec_state_.frame(0).sourceLineText();
1131 if (this.exec_state_.frameCount() > 0) {
1269 this.exec_state_ = exec_state;
1481 this.exec_state_.prepareStep(action, count);
1530 f = this.exec_state_.evaluateGlobal(target).value();
1810 var total_frames = this.exec_state_.frameCount();
1853 frames.push(this.exec_state_.frame(i));
1866 if (this.exec_state_.frameCount() == 0) {
1873 if (index < 0 || this.exec_state_.frameCount() <= index) {
1877 this.exec_state_.setSelectedFrame(request.arguments.number);
1879 response.body = this.exec_state_.frame();
1889 if (frame_index < 0 || this.exec_state_.frameCount() <= frame_index) {
1892 return this.exec_state_.frame(frame_index);
1894 return this.exec_state_.frame();
1918 if (this.exec_state_.frameCount() == 0) {
2079 response.body = this.exec_state_.evaluateGlobal(
2090 if (this.exec_state_.frameCount() == 0) {
2097 if (frame_number < 0 || frame_number >= this.exec_state_.frameCount()) {
2101 response.body = this.exec_state_.frame(frame_number).evaluate(
2106 response.body = this.exec_state_.frame().evaluate(
2183 if (this.exec_state_.frameCount() == 0) {
2189 var frame = this.exec_state_.frame();
2197 if (frame_number < 0 || frame_number >= this.exec_state_.frameCount()) {
2200 frame = this.exec_state_.frame(frame_number);
2296 var total_threads = this.exec_state_.threadCount();
2301 var details = %GetThreadDetails(this.exec_state_.break_id, i);
2384 if (this.exec_state_.frameCount() == 0) {
2392 if (frame_number < 0 || frame_number >= this.exec_state_.frameCount()) {
2396 frame_mirror = this.exec_state_.frame(frame_number);
2399 frame_mirror = this.exec_state_.frame();