(
state: {
type: 'operatorFind'
op: Operator
count: number
find: FindType
},
input: string,
ctx: TransitionContext,
)
| 332 | } |
| 333 | |
| 334 | function fromOperatorFind( |
| 335 | state: { |
| 336 | type: 'operatorFind' |
| 337 | op: Operator |
| 338 | count: number |
| 339 | find: FindType |
| 340 | }, |
| 341 | input: string, |
| 342 | ctx: TransitionContext, |
| 343 | ): TransitionResult { |
| 344 | return { |
| 345 | execute: () => |
| 346 | executeOperatorFind(state.op, state.find, input, state.count, ctx), |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | function fromOperatorTextObj( |
| 351 | state: { |
no test coverage detected