| 223 | } |
| 224 | |
| 225 | uint64_t BreakpointManager::MakeNodeBreakpointId(uint32_t nodeId) |
| 226 | { |
| 227 | return ((uint64_t)BreakpointItemType::BP_Node << 56) | nodeId; |
| 228 | } |
| 229 | |
| 230 | uint64_t BreakpointManager::MakeRuleActionBreakpointId(uint32_t nodeId, uint32_t actionIndex) |
| 231 | { |
nothing calls this directly
no outgoing calls
no test coverage detected