Searched refs:watchCompilerHost (Results 1 – 3 of 3) sorted by relevance
/third_party/typescript/src/testRunner/unittests/tscWatch/ |
D | watchApi.ts | 85 const watchCompilerHost = createWatchCompilerHost(config.path, {}, sys); constant 86 watchCompilerHost.setTimeout = undefined; 87 watchCompilerHost.clearTimeout = undefined; 88 const watch = createWatchProgram(watchCompilerHost); 112 const watchCompilerHost = createWatchCompilerHost( constant 122 const watch = createWatchProgram(watchCompilerHost); 134 …const watchCompilerHost = createWatchCompilerHost(config.path, optionsToExtend, sys, createProgram… constant 135 return createWatchProgram(watchCompilerHost);
|
/third_party/typescript/src/executeCommandLine/ |
D | executeCommandLine.ts | 599 watchCompilerHost: WatchCompilerHost<EmitAndSemanticDiagnosticsBuilderProgram>, 601 updateCreateProgram(sys, watchCompilerHost); 602 const emitFilesUsingBuilder = watchCompilerHost.afterProgramCreate!; // TODO: GH#18217 603 watchCompilerHost.afterProgramCreate = builderProgram => { 622 const watchCompilerHost = createWatchCompilerHostOfConfigFile({ constant 630 updateWatchCompilationHost(system, cb, watchCompilerHost); 631 watchCompilerHost.configFileParsingResult = configParseResult; 632 return createWatchProgram(watchCompilerHost); 643 const watchCompilerHost = createWatchCompilerHostOfFilesAndCompilerOptions({ constant 651 updateWatchCompilationHost(system, cb, watchCompilerHost); [all …]
|
/third_party/typescript/lib/ |
D | tsc.js | 95208 function updateWatchCompilationHost(sys, cb, watchCompilerHost) { argument 95209 updateCreateProgram(sys, watchCompilerHost); 95210 var emitFilesUsingBuilder = watchCompilerHost.afterProgramCreate; 95211 watchCompilerHost.afterProgramCreate = function (builderProgram) { 95221 var watchCompilerHost = ts.createWatchCompilerHostOfConfigFile({ 95229 updateWatchCompilationHost(system, cb, watchCompilerHost); 95230 watchCompilerHost.configFileParsingResult = configParseResult; 95231 return ts.createWatchProgram(watchCompilerHost); 95234 var watchCompilerHost = ts.createWatchCompilerHostOfFilesAndCompilerOptions({ 95242 updateWatchCompilationHost(system, cb, watchCompilerHost); [all …]
|