| 32 | * An operation that does nothing. |
| 33 | */ |
| 34 | export class NoopChange implements Change { |
| 35 | description = 'No operation.'; |
| 36 | order: number = Infinity; |
| 37 | path = null; |
| 38 | apply(): Promise<void> { |
| 39 | return Promise.resolve(); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Will add text to the source code. |
nothing calls this directly
no outgoing calls
no test coverage detected