Home
last modified time | relevance | path

Searched refs:preErrors (Results 1 – 1 of 1) sorted by relevance

/third_party/typescript/src/harness/
DcompilerImpl.ts262 const preErrors = preProgram && ts.getPreEmitDiagnostics(preProgram); constant
267 const longerErrors = ts.length(preErrors) > postErrors.length ? preErrors : postErrors;
268 const shorterErrors = longerErrors === preErrors ? postErrors : preErrors;
269 const errors = preErrors && (preErrors.length !== postErrors.length) ? [...shorterErrors!,
275 …message: `Pre-emit (${preErrors.length}) and post-emit (${postErrors.length}) diagnostic counts do…