()
| 654 | } |
| 655 | |
| 656 | public getCustomRulesByCommand(command?: string): CommandRule[] { |
| 657 | const rules = this.getCustomRules(); |
| 658 | return command ? rules.filter(r => r.command === command) : rules; |
| 659 | } |
| 660 | |
| 661 | public getAllRules(): CommandRule[] { |
no outgoing calls
no test coverage detected