| 233 | } |
| 234 | |
| 235 | uint64_t BreakpointManager::MakeGoalInitBreakpointId(uint32_t goalId, uint32_t actionIndex) |
| 236 | { |
| 237 | return ((uint64_t)BreakpointItemType::BP_GoalInit << 56) | ((uint64_t)actionIndex << 32) | goalId; |
| 238 | } |
| 239 | |
| 240 | uint64_t BreakpointManager::MakeGoalExitBreakpointId(uint32_t goalId, uint32_t actionIndex) |
| 241 | { |
nothing calls this directly
no outgoing calls
no test coverage detected