Lines Matching refs:exec_state_
1007 this.exec_state_ = new ExecutionState(break_id);
1035 return this.exec_state_.frame(0).func();
1040 return this.exec_state_.frame(0).sourceLine();
1045 return this.exec_state_.frame(0).sourceColumn();
1050 return this.exec_state_.frame(0).sourceLineText();
1062 if (this.exec_state_.frameCount() > 0) {
1167 this.exec_state_ = exec_state;
1370 this.exec_state_.prepareStep(action);
1418 f = this.exec_state_.evaluateGlobal(target).value();
1687 var total_frames = this.exec_state_.frameCount();
1730 frames.push(this.exec_state_.frame(i));
1743 if (this.exec_state_.frameCount() == 0) {
1750 if (index < 0 || this.exec_state_.frameCount() <= index) {
1754 this.exec_state_.setSelectedFrame(request.arguments.number);
1756 response.body = this.exec_state_.frame();
1766 if (frame_index < 0 || this.exec_state_.frameCount() <= frame_index) {
1769 return this.exec_state_.frame(frame_index);
1771 return this.exec_state_.frame();
1796 if (this.exec_state_.frameCount() == 0) {
1957 response.body = this.exec_state_.evaluateGlobal(
1968 if (this.exec_state_.frameCount() == 0) {
1975 if (frame_number < 0 || frame_number >= this.exec_state_.frameCount()) {
1979 response.body = this.exec_state_.frame(frame_number).evaluate(
1984 response.body = this.exec_state_.frame().evaluate(
2061 if (this.exec_state_.frameCount() == 0) {
2067 var frame = this.exec_state_.frame();
2075 if (frame_number < 0 || frame_number >= this.exec_state_.frameCount()) {
2078 frame = this.exec_state_.frame(frame_number);
2256 if (this.exec_state_.frameCount() == 0) {
2264 if (frame_number < 0 || frame_number >= this.exec_state_.frameCount()) {
2268 frame_mirror = this.exec_state_.frame(frame_number);
2271 frame_mirror = this.exec_state_.frame();