({
rootNames,
options,
host,
oldProgram,
}: {
rootNames: ReadonlyArray<string>;
options: CompilerOptions;
host: CompilerHost;
oldProgram?: Program;
})
| 11 | import {CompilerHost, CompilerOptions, Program} from './api'; |
| 12 | |
| 13 | export function createProgram({ |
| 14 | rootNames, |
| 15 | options, |
| 16 | host, |
| 17 | oldProgram, |
| 18 | }: { |
| 19 | rootNames: ReadonlyArray<string>; |
| 20 | options: CompilerOptions; |
| 21 | host: CompilerHost; |
| 22 | oldProgram?: Program; |
| 23 | }): Program { |
| 24 | return new NgtscProgram(rootNames, options, host, oldProgram as NgtscProgram | undefined); |
| 25 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…