| 228 | } |
| 229 | |
| 230 | uint64_t BreakpointManager::MakeRuleActionBreakpointId(uint32_t nodeId, uint32_t actionIndex) |
| 231 | { |
| 232 | return ((uint64_t)BreakpointItemType::BP_RuleAction << 56) | ((uint64_t)actionIndex << 32) | nodeId; |
| 233 | } |
| 234 | |
| 235 | uint64_t BreakpointManager::MakeGoalInitBreakpointId(uint32_t goalId, uint32_t actionIndex) |
| 236 | { |
nothing calls this directly
no outgoing calls
no test coverage detected