/third_party/typescript/lib/ |
D | tsc.js | 3552 var DiagnosticCategory; 3553 (function (DiagnosticCategory) { argument 3554 DiagnosticCategory[DiagnosticCategory["Warning"] = 0] = "Warning"; 3555 DiagnosticCategory[DiagnosticCategory["Error"] = 1] = "Error"; 3556 DiagnosticCategory[DiagnosticCategory["Suggestion"] = 2] = "Suggestion"; 3557 DiagnosticCategory[DiagnosticCategory["Message"] = 3] = "Message"; 3558 })(DiagnosticCategory = ts.DiagnosticCategory || (ts.DiagnosticCategory = {})); 3561 var name = DiagnosticCategory[d.category]; 5405 …Unterminated_string_literal: diag(1002, ts.DiagnosticCategory.Error, "Unterminated_string_literal_… 5406 …Identifier_expected: diag(1003, ts.DiagnosticCategory.Error, "Identifier_expected_1003", "Identifi… [all …]
|
D | typingsInstaller.js | 5454 var DiagnosticCategory; 5455 (function (DiagnosticCategory) { argument 5456 DiagnosticCategory[DiagnosticCategory["Warning"] = 0] = "Warning"; 5457 DiagnosticCategory[DiagnosticCategory["Error"] = 1] = "Error"; 5458 DiagnosticCategory[DiagnosticCategory["Suggestion"] = 2] = "Suggestion"; 5459 DiagnosticCategory[DiagnosticCategory["Message"] = 3] = "Message"; 5460 })(DiagnosticCategory = ts.DiagnosticCategory || (ts.DiagnosticCategory = {})); 5464 var name = DiagnosticCategory[d.category]; 8259 …Unterminated_string_literal: diag(1002, ts.DiagnosticCategory.Error, "Unterminated_string_literal_… 8260 …Identifier_expected: diag(1003, ts.DiagnosticCategory.Error, "Identifier_expected_1003", "Identifi… [all …]
|
D | typescript.d.ts | 2972 category: DiagnosticCategory; 2986 category: DiagnosticCategory; 2998 category: DiagnosticCategory; 3010 export enum DiagnosticCategory { enum 3438 type: DiagnosticCategory; 3456 type?: DiagnosticCategory;
|
D | typescriptServices.d.ts | 2972 category: DiagnosticCategory; 2986 category: DiagnosticCategory; 2998 category: DiagnosticCategory; 3010 export enum DiagnosticCategory { enum 3438 type: DiagnosticCategory; 3456 type?: DiagnosticCategory;
|
D | tsserverlibrary.d.ts | 2972 category: DiagnosticCategory; 2986 category: DiagnosticCategory; 2998 category: DiagnosticCategory; 3010 export enum DiagnosticCategory { enum 3438 type: DiagnosticCategory; 3456 type?: DiagnosticCategory;
|
/third_party/typescript/src/linter/ArkTSLinter_1_0/ |
D | LinterRunner.ts | 19 function makeDiag(category: DiagnosticCategory, code: number, file: SourceFile, start: number, leng… 25 …roblemInfo.severity === Utils.ProblemSeverity.ERROR ? DiagnosticCategory.Error : DiagnosticCategor…
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | conditionCheck.ts | 85 type: DiagnosticCategory.Warning, 96 type: DiagnosticCategory.Warning
|
D | jsdocTag.ts | 764 type: DiagnosticCategory.Warning, 771 type: DiagnosticCategory.Warning, 783 type: DiagnosticCategory.Warning
|
D | externalProjects.ts | 71 category: DiagnosticCategory.Warning,
|
/third_party/typescript/src/linter/ArkTSLinter_1_1/ |
D | LinterRunner.ts | 19 function makeDiag(category: DiagnosticCategory, code: number, file: SourceFile, start: number, leng… 25 …oblemInfo.severity === Common.ProblemSeverity.ERROR ? DiagnosticCategory.Error : DiagnosticCategor…
|
/third_party/typescript/scripts/ |
D | processDiagnosticMessages.mjs | 84 …" function diag(code: number, category: DiagnosticCategory, key: string, message: string, repor… 94 …result += ` ${propName}: diag(${code}, DiagnosticCategory.${category}, "${createKey(propNam…
|
/third_party/typescript/src/services/codefixes/ |
D | disableJsDiagnostics.ts | 7 return diag.category === DiagnosticCategory.Error ? diag.code : undefined;
|
/third_party/typescript/src/harness/ |
D | compilerImpl.ts | 272 category: ts.DiagnosticCategory.Error, 278 category: ts.DiagnosticCategory.Error,
|
D | harnessLanguageService.ts | 929 category: ts.DiagnosticCategory.Warning, 956 category: ts.DiagnosticCategory.Error,
|
D | client.ts | 424 const category = firstDefined(Object.keys(DiagnosticCategory), id => 425 …isString(id) && entry.category === id.toLowerCase() ? (DiagnosticCategory as any)[id] : undefined);
|
D | virtualFileSystemWithWatch.ts | 886 type: DiagnosticCategory.Warning
|
/third_party/typescript/src/testRunner/unittests/config/ |
D | configurationExtension.ts | 204 …assert.equal(actualError.category, DiagnosticCategory.Error, "Category mismatch"); // Should alway…
|
/third_party/typescript/tests/cases/fourslash/ |
D | fourslash.ts | 87 enum DiagnosticCategory { enum 102 category: DiagnosticCategory;
|
/third_party/typescript/src/compiler/ |
D | watch.ts | 106 … return countWhere(diagnostics, diagnostic => diagnostic.category === DiagnosticCategory.Error); 111 filter(diagnostics, diagnostic => diagnostic.category === DiagnosticCategory.Error)
|
D | program.ts | 334 function getCategoryFormat(category: DiagnosticCategory): ForegroundColorEscapeSequences { 336 case DiagnosticCategory.Error: return ForegroundColorEscapeSequences.Red; 337 case DiagnosticCategory.Warning: return ForegroundColorEscapeSequences.Yellow; 338 …case DiagnosticCategory.Suggestion: return Debug.fail("Should never get an Info diagnostic on the … 339 case DiagnosticCategory.Message: return ForegroundColorEscapeSequences.Blue;
|
D | builder.ts | 13 category: DiagnosticCategory; 1227 …`${locationInfo(diagnostic)}${DiagnosticCategory[diagnostic.category]}${diagnostic.code}: ${flatte…
|
D | types.ts | 6488 category: DiagnosticCategory; 6505 category: DiagnosticCategory; 6521 category: DiagnosticCategory; 6543 export enum DiagnosticCategory { 6550 …export function diagnosticCategoryName(d: { category: DiagnosticCategory }, lowerCase = true): str… 6551 const name = DiagnosticCategory[d.category]; 7317 type: DiagnosticCategory; 7336 type?: DiagnosticCategory;
|
/third_party/typescript/tests/baselines/reference/api/ |
D | typescript.d.ts | 2972 category: DiagnosticCategory; 2986 category: DiagnosticCategory; 2998 category: DiagnosticCategory; 3010 export enum DiagnosticCategory { enum 3438 type: DiagnosticCategory; 3456 type?: DiagnosticCategory;
|
D | tsserverlibrary.d.ts | 2972 category: DiagnosticCategory; 2986 category: DiagnosticCategory; 2998 category: DiagnosticCategory; 3010 export enum DiagnosticCategory { enum 3438 type: DiagnosticCategory; 3456 type?: DiagnosticCategory;
|
/third_party/typescript/src/server/ |
D | project.ts | 419 type: DiagnosticCategory.Warning
|