()
| 28 | type InputHandler = (input: string) => MaybeCursor |
| 29 | type InputMapper = (input: string) => MaybeCursor |
| 30 | const NOOP_HANDLER: InputHandler = () => {} |
| 31 | function mapInput(input_map: Array<[string, InputHandler]>): InputMapper { |
| 32 | const map = new Map(input_map) |
| 33 | return function (input: string): MaybeCursor { |
nothing calls this directly
no outgoing calls
no test coverage detected