Home
last modified time | relevance | path

Searched refs:BuilderProgram (Results 1 – 25 of 32) sorted by relevance

12

/third_party/typescript/src/compiler/
DbuilderPublic.ts38 export interface BuilderProgram { interface
132 export interface SemanticDiagnosticsBuilderProgram extends BuilderProgram {
175 … BuilderProgramHost, oldProgram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnost…
176 …rogram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?:…
177BuilderProgram, configFileParsingDiagnosticsOrOldProgram?: readonly Diagnostic[] | BuilderProgram,…
DwatchPublic.ts37 export interface IncrementalProgramOptions<T extends BuilderProgram> {
46 …export function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuil…
57 …export type CreateProgram<T extends BuilderProgram> = (rootNames: readonly string[] | undefined, o…
73 export interface ProgramHost<T extends BuilderProgram> {
126 export interface ProgramHost<T extends BuilderProgram> {
136 export interface WatchCompilerHost<T extends BuilderProgram> extends ProgramHost<T>, WatchHost {
150 …export interface WatchCompilerHostOfFilesAndCompilerOptions<T extends BuilderProgram> extends Watc…
166 …export interface WatchCompilerHostOfConfigFile<T extends BuilderProgram> extends WatchCompilerHost…
188 …export interface WatchCompilerHostOfConfigFile<T extends BuilderProgram> extends WatchCompilerHost…
220 …export function createWatchCompilerHost<T extends BuilderProgram>(configFileName: string, optionsT…
[all …]
Dwatch.ts209 export function isBuilderProgram(program: Program | BuilderProgram): program is BuilderProgram {
210 return !!(program as BuilderProgram).getState;
213 …export function listFiles<T extends BuilderProgram>(program: Program | T, write: (s: string) => vo…
435 export function emitFilesAndReportErrors<T extends BuilderProgram>(
494 export function emitFilesAndReportErrorsAndGetExitStatus<T extends BuilderProgram>(
685 …export function createProgramHost<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProg…
714 …function createWatchCompilerHost<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgr…
745 export interface CreateWatchCompilerHostInput<T extends BuilderProgram> {
752 …export interface CreateWatchCompilerHostOfConfigFileInput<T extends BuilderProgram> extends Create…
761 …export function createWatchCompilerHostOfConfigFile<T extends BuilderProgram = EmitAndSemanticDiag…
[all …]
DtsbuildPublic.ts85 export interface SolutionBuilderHostBase<T extends BuilderProgram> extends ProgramHost<T> {
111 …export interface SolutionBuilderHost<T extends BuilderProgram> extends SolutionBuilderHostBase<T> {
115 …export interface SolutionBuilderWithWatchHost<T extends BuilderProgram> extends SolutionBuilderHos…
138 export interface SolutionBuilder<T extends BuilderProgram> {
165 …function createSolutionBuilderHostBase<T extends BuilderProgram>(system: System, createProgram: Cr…
176 …export function createSolutionBuilderHost<T extends BuilderProgram = EmitAndSemanticDiagnosticsBui…
182 …export function createSolutionBuilderWithWatchHost<T extends BuilderProgram = EmitAndSemanticDiagn…
197 …export function createSolutionBuilder<T extends BuilderProgram>(host: SolutionBuilderHost<T>, root…
201 …export function createSolutionBuilderWithWatch<T extends BuilderProgram>(host: SolutionBuilderWith…
231 …interface SolutionBuilderState<T extends BuilderProgram = BuilderProgram> extends WatchFactory<Wat…
[all …]
Dbuilder.ts1050 oldProgram: BuilderProgram | undefined;
1054 … oldProgramOrHost?: BuilderProgram | CompilerHost, configFileParsingDiagnosticsOrOldProgram?: read…
1057 let oldProgram: BuilderProgram;
1061 oldProgram = configFileParsingDiagnosticsOrOldProgram as BuilderProgram;
1066 oldProgram = configFileParsingDiagnosticsOrOldProgram as BuilderProgram;
1080 oldProgram = oldProgramOrHost as BuilderProgram;
1527 saveEmitState: noop as BuilderProgram["saveEmitState"],
1596 …Options: CompilerOptions; }, configFileParsingDiagnostics: readonly Diagnostic[]): BuilderProgram {
1599 saveEmitState: noop as BuilderProgram["saveEmitState"],
DwatchUtilities.ts485 program: BuilderProgram | Program | readonly string[] | undefined;
538 … const builderProgram = !realProgram && !isArray(program) ? program as BuilderProgram : undefined;
556 function isBuilderProgram<T extends BuilderProgram>(program: Program | T): program is T {
/third_party/typescript/src/linter/ArkTSLinter_1_1/
DTSDiagnostics.ts40 public getStrictBuilderProgram(): BuilderProgram {
44 public getNonStrictBuilderProgram(): BuilderProgram {
58 constructor(public strictProgram: BuilderProgram, public nonStrictProgram: BuilderProgram) {
92 function getAllDiagnostics(program: BuilderProgram, fileName: string): Diagnostic[] {
DLinterRunner.ts20 builderProgram: BuilderProgram,
/third_party/typescript/src/linter/ArkTSLinter_1_0/
DTSDiagnostics.ts40 public getStrictBuilderProgram(): BuilderProgram {
44 public getNonStrictBuilderProgram(): BuilderProgram {
58 constructor(public strictProgram: BuilderProgram, public nonStrictProgram: BuilderProgram) {
92 function getAllDiagnostics(program: BuilderProgram, fileName: string): Diagnostic[] {
DLinterRunner.ts20 builderProgram: BuilderProgram,
/third_party/typescript/src/testRunner/unittests/tscWatch/
Dhelpers.ts98 …export type WatchOrSolution<T extends BuilderProgram> = void | SolutionBuilder<T> | WatchOfConfigF…
99 …export interface TscWatchCompileChange<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilde…
112 …export interface TscWatchCompileBase<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderP…
194 …interface CreateWatchCompilerHostOfConfigFileForBaseline<T extends BuilderProgram> extends CreateW…
199 …export function createWatchCompilerHostOfConfigFileForBaseline<T extends BuilderProgram = EmitAndS…
211 …interface CreateWatchCompilerHostOfFilesAndCompilerOptionsForBaseline<T extends BuilderProgram> ex…
215 …reateWatchCompilerHostOfFilesAndCompilerOptionsForBaseline<T extends BuilderProgram = EmitAndSeman…
227 …function updateWatchHostForBaseline<T extends BuilderProgram>(host: WatchCompilerHost<T>, cb: Exec…
245 …export interface RunWatchBaseline<T extends BuilderProgram> extends BaselineBase, TscWatchCompileB…
250 …export function runWatchBaseline<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProgr…
DwatchApi.ts261 function createWatch<T extends BuilderProgram>(
316 function verifyBuilder<T extends BuilderProgram>(
/third_party/typescript/tests/baselines/reference/
DquickinfoTypeAtReturnPositionsInaccurate.symbols240 interface BuilderProgram {
241 >BuilderProgram : Symbol(BuilderProgram, Decl(quickinfoTypeAtReturnPositionsInaccurate.ts, 89, 1))
244 >getProgram : Symbol(BuilderProgram.getProgram, Decl(quickinfoTypeAtReturnPositionsInaccurate.ts, 9…
253 declare function isBuilderProgram<T extends BuilderProgram>(program: Program | T): program is T;
256 >BuilderProgram : Symbol(BuilderProgram, Decl(quickinfoTypeAtReturnPositionsInaccurate.ts, 89, 1))
263 export function listFiles<T extends BuilderProgram>(program: Program | T) {
266 >BuilderProgram : Symbol(BuilderProgram, Decl(quickinfoTypeAtReturnPositionsInaccurate.ts, 89, 1))
276 >program.getProgram : Symbol(BuilderProgram.getProgram, Decl(quickinfoTypeAtReturnPositionsInaccura…
278 >getProgram : Symbol(BuilderProgram.getProgram, Decl(quickinfoTypeAtReturnPositionsInaccurate.ts, 9…
DquickinfoTypeAtReturnPositionsInaccurate.types211 interface BuilderProgram {
219 declare function isBuilderProgram<T extends BuilderProgram>(program: Program | T): program is T;
220 >isBuilderProgram : <T extends BuilderProgram>(program: Program | T) => program is T
223 export function listFiles<T extends BuilderProgram>(program: Program | T) {
224 >listFiles : <T extends BuilderProgram>(program: Program | T) => void
231 >isBuilderProgram : <T extends BuilderProgram>(program: Program | T) => program is T
DquickinfoTypeAtReturnPositionsInaccurate.js94 interface BuilderProgram {
100 declare function isBuilderProgram<T extends BuilderProgram>(program: Program | T): program is T;
101 export function listFiles<T extends BuilderProgram>(program: Program | T) {
DquickinfoTypeAtReturnPositionsInaccurate.errors.txt101 interface BuilderProgram {
107 declare function isBuilderProgram<T extends BuilderProgram>(program: Program | T): program is T;
108 export function listFiles<T extends BuilderProgram>(program: Program | T) {
DAPISample_WatchWithOwnWatchHost.js24 const host: ts.WatchCompilerHostOfFilesAndCompilerOptions<ts.BuilderProgram> = {
/third_party/typescript/tests/cases/compiler/
DquickinfoTypeAtReturnPositionsInaccurate.ts93 interface BuilderProgram { interface
99 declare function isBuilderProgram<T extends BuilderProgram>(program: Program | T): program is T;
100 export function listFiles<T extends BuilderProgram>(program: Program | T) {
DAPISample_WatchWithOwnWatchHost.ts27 const host: ts.WatchCompilerHostOfFilesAndCompilerOptions<ts.BuilderProgram> = {
/third_party/typescript/src/testRunner/unittests/tsc/
Dhelpers.ts30 export type CommandLineProgram = [Program, BuilderProgram?];
36 …unction isAnyProgram(program: Program | BuilderProgram | ParsedCommandLine): program is Program |
37 return !!(program as Program | BuilderProgram).getCompilerOptions;
/third_party/typescript/src/harness/
DfakesHosts.ts536 …ass SolutionBuilderHost extends CompilerHost implements ts.SolutionBuilderHost<ts.BuilderProgram> {
537 createProgram: ts.CreateProgram<ts.BuilderProgram>;
539 …s.CompilerOptions, setParentNodes?: boolean, createProgram?: ts.CreateProgram<ts.BuilderProgram>) {
544 …s.CompilerOptions, setParentNodes?: boolean, createProgram?: ts.CreateProgram<ts.BuilderProgram>) {
/third_party/typescript/lib/
Dtypescript.d.ts5634 interface BuilderProgram { interface
5704 interface SemanticDiagnosticsBuilderProgram extends BuilderProgram {
5737 … BuilderProgramHost, oldProgram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnost…
5738 …rogram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?:…
5749 interface IncrementalProgramOptions<T extends BuilderProgram> {
5757 …function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProg…
5760 …type CreateProgram<T extends BuilderProgram> = (rootNames: readonly string[] | undefined, options:…
5774 interface ProgramHost<T extends BuilderProgram> {
5818 interface WatchCompilerHost<T extends BuilderProgram> extends ProgramHost<T>, WatchHost {
5829 …interface WatchCompilerHostOfFilesAndCompilerOptions<T extends BuilderProgram> extends WatchCompil…
[all …]
DtypescriptServices.d.ts5634 interface BuilderProgram { interface
5704 interface SemanticDiagnosticsBuilderProgram extends BuilderProgram {
5737 … BuilderProgramHost, oldProgram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnost…
5738 …rogram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?:…
5749 interface IncrementalProgramOptions<T extends BuilderProgram> {
5757 …function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProg…
5760 …type CreateProgram<T extends BuilderProgram> = (rootNames: readonly string[] | undefined, options:…
5774 interface ProgramHost<T extends BuilderProgram> {
5818 interface WatchCompilerHost<T extends BuilderProgram> extends ProgramHost<T>, WatchHost {
5829 …interface WatchCompilerHostOfFilesAndCompilerOptions<T extends BuilderProgram> extends WatchCompil…
[all …]
Dtsserverlibrary.d.ts5634 interface BuilderProgram { interface
5704 interface SemanticDiagnosticsBuilderProgram extends BuilderProgram {
5737 … BuilderProgramHost, oldProgram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnost…
5738 …rogram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?:…
5749 interface IncrementalProgramOptions<T extends BuilderProgram> {
5757 …function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProg…
5760 …type CreateProgram<T extends BuilderProgram> = (rootNames: readonly string[] | undefined, options:…
5774 interface ProgramHost<T extends BuilderProgram> {
5818 interface WatchCompilerHost<T extends BuilderProgram> extends ProgramHost<T>, WatchHost {
5829 …interface WatchCompilerHostOfFilesAndCompilerOptions<T extends BuilderProgram> extends WatchCompil…
[all …]
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts5634 interface BuilderProgram { interface
5704 interface SemanticDiagnosticsBuilderProgram extends BuilderProgram {
5737 … BuilderProgramHost, oldProgram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnost…
5738 …rogram?: BuilderProgram, configFileParsingDiagnostics?: readonly Diagnostic[], projectReferences?:…
5749 interface IncrementalProgramOptions<T extends BuilderProgram> {
5757 …function createIncrementalProgram<T extends BuilderProgram = EmitAndSemanticDiagnosticsBuilderProg…
5760 …type CreateProgram<T extends BuilderProgram> = (rootNames: readonly string[] | undefined, options:…
5774 interface ProgramHost<T extends BuilderProgram> {
5818 interface WatchCompilerHost<T extends BuilderProgram> extends ProgramHost<T>, WatchHost {
5829 …interface WatchCompilerHostOfFilesAndCompilerOptions<T extends BuilderProgram> extends WatchCompil…
[all …]

12