(input)
| 435 | return this.isReadOnly?.(input) ?? false; |
| 436 | }, |
| 437 | isReadOnly(input) { |
| 438 | const compoundCommandHasCd = commandHasAnyCd(input.command); |
| 439 | const result = checkReadOnlyConstraints(input, compoundCommandHasCd); |
| 440 | return result.behavior === 'allow'; |
| 441 | }, |
| 442 | toAutoClassifierInput(input) { |
| 443 | return input.command; |
| 444 | }, |
nothing calls this directly
no test coverage detected