(start: Position, text: string)
| 48 | } |
| 49 | |
| 50 | public static delete(start: Position, text: string) { |
| 51 | return new DocumentChange(start, text, ''); |
| 52 | } |
| 53 | |
| 54 | public static replace(start: Position, before: string, after: string) { |
| 55 | return new DocumentChange(start, before, after); |
no outgoing calls
no test coverage detected