| 95 | } |
| 96 | |
| 97 | RuleActionMapping const * RuleActionMap::FindActionMapping(RuleActionNode * action) |
| 98 | { |
| 99 | auto mapping = ruleActionMappings_.find(action); |
| 100 | if (mapping == ruleActionMappings_.end()) { |
| 101 | Debug("Debugger::FindActionMapping(%016x): Could not find action mapping for rule action", action); |
| 102 | return nullptr; |
| 103 | } |
| 104 | |
| 105 | return &mapping->second; |
| 106 | } |
| 107 | |
| 108 | |
| 109 |
no test coverage detected