Searched refs:watchLogLevel (Results 1 – 5 of 5) sorted by relevance
/third_party/typescript/src/compiler/ |
D | watchUtilities.ts | 587 …export function getWatchFactory<X, Y = undefined>(host: WatchFactoryHost, watchLogLevel: WatchLogL… 588 setSysLog(watchLogLevel === WatchLogLevel.Verbose ? log : noop); 593 …const triggerInvokingFactory: WatchFactory<X, Y> | undefined = watchLogLevel !== WatchLogLevel.Non… 599 const factory = watchLogLevel === WatchLogLevel.Verbose ? 605 const excludeWatcherFactory = watchLogLevel === WatchLogLevel.Verbose ?
|
D | watch.ts | 593 …const watchLogLevel = host.trace ? options.extendedDiagnostics ? WatchLogLevel.Verbose : options.d… constant 594 …const writeLog: (s: string) => void = watchLogLevel !== WatchLogLevel.None ? (s => host.trace!(s))… 595 …const result = getWatchFactory<WatchType, Y>(host, watchLogLevel, writeLog) as WatchFactory<WatchT…
|
/third_party/typescript/src/server/ |
D | editorServices.ts | 876 const watchLogLevel = this.logger.hasLevel(LogLevel.verbose) ? WatchLogLevel.Verbose : constant 878 …const log: (s: string) => void = watchLogLevel !== WatchLogLevel.None ? (s => this.logger.info(s))… 885 getWatchFactory(this.host, watchLogLevel, log, getDetailWatchInfo);
|
/third_party/typescript/lib/ |
D | tsc.js | 100068 function getWatchFactory(host, watchLogLevel, log, getDetailWatchInfo) { argument 100069 ts.setSysLog(watchLogLevel === WatchLogLevel.Verbose ? log : ts.noop); 100074 var triggerInvokingFactory = watchLogLevel !== WatchLogLevel.None ? 100080 var factory = watchLogLevel === WatchLogLevel.Verbose ? 100086 var excludeWatcherFactory = watchLogLevel === WatchLogLevel.Verbose ? 107135 …var watchLogLevel = host.trace ? options.extendedDiagnostics ? ts.WatchLogLevel.Verbose : options.… 107136 …var writeLog = watchLogLevel !== ts.WatchLogLevel.None ? (function (s) { return host.trace(s); }) … 107137 var result = ts.getWatchFactory(host, watchLogLevel, writeLog);
|
D | typingsInstaller.js | 120699 function getWatchFactory(host, watchLogLevel, log, getDetailWatchInfo) { argument 120700 ts.setSysLog(watchLogLevel === WatchLogLevel.Verbose ? log : ts.noop); 120705 var triggerInvokingFactory = watchLogLevel !== WatchLogLevel.None ? 120711 var factory = watchLogLevel === WatchLogLevel.Verbose ? 120717 var excludeWatcherFactory = watchLogLevel === WatchLogLevel.Verbose ? 128812 …var watchLogLevel = host.trace ? options.extendedDiagnostics ? ts.WatchLogLevel.Verbose : options.… 128813 …var writeLog = watchLogLevel !== ts.WatchLogLevel.None ? (function (s) { return host.trace(s); }) … 128814 var result = ts.getWatchFactory(host, watchLogLevel, writeLog);
|