(
position: Position,
vimState: VimState,
)
| 208 | } |
| 209 | |
| 210 | public override async execAction( |
| 211 | position: Position, |
| 212 | vimState: VimState, |
| 213 | ): Promise<Position | IMovement> { |
| 214 | const document = vimState.document; |
| 215 | return ( |
| 216 | new PythonDocument(document).find(this.type, this.direction, this.edge, position) ?? |
| 217 | failedMovement(vimState) |
| 218 | ); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | @RegisterAction |
nothing calls this directly
no test coverage detected