([sources, destinations]: [
TypedSelection[],
TypedSelection[]
])
| 269 | } |
| 270 | |
| 271 | async run([sources, destinations]: [ |
| 272 | TypedSelection[], |
| 273 | TypedSelection[] |
| 274 | ]): Promise<ActionReturnValue> { |
| 275 | sources = this.broadcastSource(sources, destinations); |
| 276 | |
| 277 | await this.decorateTargets(sources, destinations); |
| 278 | |
| 279 | const edits = this.getEdits(sources, destinations); |
| 280 | |
| 281 | const markEntries = await this.performEditsAndComputeThatMark(edits); |
| 282 | |
| 283 | const { thatMark, sourceMark } = this.calculateMarks(markEntries); |
| 284 | |
| 285 | await this.decorateThatMark(thatMark); |
| 286 | |
| 287 | return { thatMark, sourceMark }; |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | export class Bring extends BringMoveSwap { |
nothing calls this directly
no test coverage detected