/third_party/typescript/tests/baselines/reference/ |
D | augmentedTypesExternalModule1.js | 3 class c5 { public foo() { } } class 12 var c5 = /** @class */ (function () { function 13 function c5() { function
|
D | mergedClassInterface.js | 37 var c5 : C5; variable 65 var c5; variable
|
D | augmentedTypesClass3.js | 3 class c5 { public foo() { } } class 18 var c5 = /** @class */ (function () { function 19 function c5() { function
|
D | constDeclarations.js | 5 const c3 = 0, c4 :string = "", c5 = null; constant 17 const c3 = 0, c4 = "", c5 = null; constant
|
D | constDeclarations-errors.js | 5 const c3, c4, c5 :string, c6; // error, missing initialicer constant 22 const c3, c4, c5, c6; // error, missing initialicer constant
|
D | collisionRestParameterClassConstructor.js | 43 class c5 { class 121 var c5 = /** @class */ (function () { function 122 function c5(_i) { function
|
D | destructuringVariableDeclaration2.js | 15 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
|
D | commentsClass.js | 23 class c5 { class 102 var c5 = /** @class */ (function () { function 103 function c5() { function
|
D | collisionArgumentsClassConstructor.js | 51 class c5 { class 151 var c5 = /** @class */ (function () { function 152 function c5(i) { function
|
D | ambientConstLiterals.js | 12 const c5 = f(123); constant 39 var c5 = f(123); variable
|
D | unionTypeInference.js | 26 const c5 = f3("abc"); // never constant 94 const c5 = f3("abc"); // never constant
|
D | untypedFunctionCallsWithTypeParameters1.js | 41 var c5: callable3<number>; variable 93 var c5; variable
|
D | constDeclarations2.js | 24 const c3 = 0, c4: string, c5: any; constant
|
D | constDeclarations-validContexts.js | 20 const c5 = 0; constant 140 const c5 = 0; constant
|
/third_party/typescript/tests/cases/compiler/ |
D | constDeclarations.ts | 7 const c3 = 0, c4 :string = "", c5 = null; constant 13 for(const c5 = 0, c6 = 0; c5 < c6; ) { break; } constant
|
D | augmentedTypesExternalModule1.ts | 3 class c5 { public foo() { } } class
|
D | constDeclarations2.ts | 8 export const c3 = 0, c4 :string = "", c5 = null; constant
|
D | constDeclarations-ambient-errors.ts | 6 declare const c3 = null, c4 :string = "", c5: any = 0; constant
|
D | constDeclarations-ambient.ts | 6 declare const c3, c4 :string, c5: any; constant
|
D | augmentedTypesClass3.ts | 2 class c5 { public foo() { } } class
|
D | constDeclarations-errors.ts | 6 const c3, c4, c5 :string, c6; // error, missing initialicer constant
|
D | constDeclarations-invalidContexts.ts | 19 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/ |
D | classWithConstructors.ts | 17 var c5 = new C2(1); // ok variable 42 var c5 = new C2(1, 2); // ok variable
|
/third_party/typescript/tests/cases/conformance/types/literal/ |
D | templateLiteralTypes2.ts | 35 …const c5: `foo${string}` | `bar${string}` | `baz${string}` = c4; // `foo${string}` | `bar${string}… constant 52 const c5 = `foo${s}` as const; constant
|
D | literalTypes2.ts | 28 const c5 = ""; constant 52 const c5 = cond ? 456 : undefined; constant 79 readonly c5 = ""; property in C1
|