(path: string, content: string)
| 22 | } from './ast-utils'; |
| 23 | |
| 24 | function getTsSource(path: string, content: string): ts.SourceFile { |
| 25 | return ts.createSourceFile(path, content, ts.ScriptTarget.Latest, true); |
| 26 | } |
| 27 | |
| 28 | function applyChanges(path: string, content: string, changes: Change[]): string { |
| 29 | const tree = new HostTree(); |
no outgoing calls
no test coverage detected