Home
last modified time | relevance | path

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

/third_party/typescript/src/testRunner/
Drunner.ts12 if (runner instanceof CompilerBaselineRunner || runner instanceof FourSlashRunner) {
44 return new CompilerBaselineRunner(CompilerTestType.Conformance);
46 return new CompilerBaselineRunner(CompilerTestType.Regressions);
48 return new CompilerBaselineRunner(CompilerTestType.OH);
178 runners.push(new CompilerBaselineRunner(CompilerTestType.Conformance));
179 runners.push(new CompilerBaselineRunner(CompilerTestType.Regressions));
182 runners.push(new CompilerBaselineRunner(CompilerTestType.OH));
185 runners.push(new CompilerBaselineRunner(CompilerTestType.Conformance));
230 runners.push(new CompilerBaselineRunner(CompilerTestType.Conformance));
231 runners.push(new CompilerBaselineRunner(CompilerTestType.Regressions));
[all …]
DcompilerRunner.ts13 export class CompilerBaselineRunner extends RunnerBase { class