| 238 | } |
| 239 | |
| 240 | uint64_t BreakpointManager::MakeGoalExitBreakpointId(uint32_t goalId, uint32_t actionIndex) |
| 241 | { |
| 242 | return ((uint64_t)BreakpointItemType::BP_GoalExit << 56) | ((uint64_t)actionIndex << 32) | goalId; |
| 243 | } |
| 244 | |
| 245 | bool BreakpointManager::ForcedBreakpointConditionsSatisfied(std::vector<CallStackFrame> const & stack, |
| 246 | Node * bpNode, BreakpointType bpType) |
nothing calls this directly
no outgoing calls
no test coverage detected