Home | History | Annotate | Download | only in src

Lines Matching full:break_id

252 function IsBreakPointTriggered(break_id, break_point) {
253 return break_point.isTriggered(MakeExecutionState(break_id));
951 function MakeExecutionState(break_id) {
952 return new ExecutionState(break_id);
955 function ExecutionState(break_id) {
956 this.break_id = break_id;
965 return %PrepareStep(this.break_id, action, count);
970 return MakeMirror(%DebugEvaluateGlobal(this.break_id, source,
976 return %GetFrameCount(this.break_id);
980 return %GetThreadCount(this.break_id);
989 return new FrameMirror(this.break_id, opt_index);
2374 var details = %GetThreadDetails(this.exec_state_.break_id, i);