Home
last modified time | relevance | path

Searched defs:c5 (Results 1 – 25 of 86) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DaugmentedTypesExternalModule1.js3 class c5 { public foo() { } } class
12 var c5 = /** @class */ (function () { function
13 function c5() { function
DmergedClassInterface.js37 var c5 : C5; variable
65 var c5; variable
DaugmentedTypesClass3.js3 class c5 { public foo() { } } class
18 var c5 = /** @class */ (function () { function
19 function c5() { function
DconstDeclarations.js5 const c3 = 0, c4 :string = "", c5 = null; constant
17 const c3 = 0, c4 = "", c5 = null; constant
DconstDeclarations-errors.js5 const c3, c4, c5 :string, c6; // error, missing initialicer constant
22 const c3, c4, c5, c6; // error, missing initialicer constant
DcollisionRestParameterClassConstructor.js43 class c5 { class
121 var c5 = /** @class */ (function () { function
122 function c5(_i) { function
DdestructuringVariableDeclaration2.js15 var [c1, c2, { c3: c4, c5 }, , ...c6] = [1, 2, { c3: 4, c5: 0 }]; // Error property
34 var _g = [1, 2, { c3: 4, c5: 0 }], c1 = _g[0], c2 = _g[1], _h = _g[2], c4 = _h.c3, c5 = _h.c5, c6 =… property
DcommentsClass.js23 class c5 { class
102 var c5 = /** @class */ (function () { function
103 function c5() { function
DcollisionArgumentsClassConstructor.js51 class c5 { class
151 var c5 = /** @class */ (function () { function
152 function c5(i) { function
DambientConstLiterals.js12 const c5 = f(123); constant
39 var c5 = f(123); variable
DunionTypeInference.js26 const c5 = f3("abc"); // never constant
94 const c5 = f3("abc"); // never constant
DuntypedFunctionCallsWithTypeParameters1.js41 var c5: callable3<number>; variable
93 var c5; variable
DconstDeclarations2.js24 const c3 = 0, c4: string, c5: any; constant
DconstDeclarations-validContexts.js20 const c5 = 0; constant
140 const c5 = 0; constant
/third_party/typescript/tests/cases/compiler/
DconstDeclarations.ts7 const c3 = 0, c4 :string = "", c5 = null; constant
13 for(const c5 = 0, c6 = 0; c5 < c6; ) { break; } constant
DaugmentedTypesExternalModule1.ts3 class c5 { public foo() { } } class
DconstDeclarations2.ts8 export const c3 = 0, c4 :string = "", c5 = null; constant
DconstDeclarations-ambient-errors.ts6 declare const c3 = null, c4 :string = "", c5: any = 0; constant
DconstDeclarations-ambient.ts6 declare const c3, c4 :string, c5: any; constant
DaugmentedTypesClass3.ts2 class c5 { public foo() { } } class
DconstDeclarations-errors.ts6 const c3, c4, c5 :string, c6; // error, missing initialicer constant
DconstDeclarations-invalidContexts.ts19 const c5 = 0; // No Error will be reported here since we turn off all type checking constant
/third_party/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/
DclassWithConstructors.ts17 var c5 = new C2(1); // ok variable
42 var c5 = new C2(1, 2); // ok variable
/third_party/typescript/tests/cases/conformance/types/literal/
DtemplateLiteralTypes2.ts35 …const c5: `foo${string}` | `bar${string}` | `baz${string}` = c4; // `foo${string}` | `bar${string}… constant
52 const c5 = `foo${s}` as const; constant
DliteralTypes2.ts28 const c5 = ""; constant
52 const c5 = cond ? 456 : undefined; constant
79 readonly c5 = ""; property in C1

1234