Lines Matching refs:break_id
232 function IsBreakPointTriggered(break_id, break_point) { argument
233 return break_point.isTriggered(MakeExecutionState(break_id));
931 function MakeExecutionState(break_id) { argument
932 return new ExecutionState(break_id);
935 function ExecutionState(break_id) { argument
936 this.break_id = break_id;
950 return %PrepareStep(this.break_id, action, count, callFrameId);
955 return MakeMirror(%DebugEvaluateGlobal(this.break_id, source,
961 return %GetFrameCount(this.break_id);
965 return %GetThreadCount(this.break_id);
974 return new FrameMirror(this.break_id, opt_index);
992 function MakeBreakEvent(break_id, break_points_hit) { argument
993 return new BreakEvent(break_id, break_points_hit);
997 function BreakEvent(break_id, break_points_hit) { argument
998 this.frame_ = new FrameMirror(break_id, 0);
1070 function MakeExceptionEvent(break_id, exception, uncaught, promise) { argument
1071 return new ExceptionEvent(break_id, exception, uncaught, promise);
1075 function ExceptionEvent(break_id, exception, uncaught, promise) { argument
1076 this.exec_state_ = new ExecutionState(break_id);
2301 var details = %GetThreadDetails(this.exec_state_.break_id, i);