| 13 | const riskyAdjoiningCharExp = /[0-9a-z_$]/i; |
| 14 | |
| 15 | interface PatcherType { |
| 16 | replace(loc: any, lines: any): any; |
| 17 | get(loc?: any): any; |
| 18 | tryToReprintComments(newNode: any, oldNode: any, print: any): any; |
| 19 | deleteComments(node: any): any; |
| 20 | } |
| 21 | |
| 22 | interface PatcherConstructor { |
| 23 | new (lines: any): PatcherType; |
no outgoing calls
no test coverage detected
searching dependent graphs…