(
sources: TypedSelection[],
destinations: TypedSelection[]
)
| 77 | } |
| 78 | |
| 79 | private async decorateTargets( |
| 80 | sources: TypedSelection[], |
| 81 | destinations: TypedSelection[] |
| 82 | ) { |
| 83 | const decorationTypes = this.getDecorationStyles(); |
| 84 | await Promise.all([ |
| 85 | displayPendingEditDecorations(sources, decorationTypes.sourceStyle), |
| 86 | displayPendingEditDecorations( |
| 87 | destinations, |
| 88 | decorationTypes.destinationStyle |
| 89 | ), |
| 90 | ]); |
| 91 | } |
| 92 | |
| 93 | private getEdits( |
| 94 | sources: TypedSelection[], |
no test coverage detected