Home
last modified time | relevance | path

Searched defs:c4 (Results 1 – 25 of 187) sorted by relevance

12345678

/third_party/typescript/tests/baselines/reference/
DaugmentedTypesClass.js7 class c4 { public foo() { } } class
20 var c4 = /** @class */ (function () { function
21 function c4() { function
26 (function (c4) { argument
DcommentsFormatting.js181 var c4 = /** @class */ (function () { function
182 function c4() { function
270 class c4 { class
DstaticPrototypePropertyOnClass.js10 class c4 { class
37 var c4 = /** @class */ (function () { function
38 function c4(param) { function
DconstDeclarations.js5 const c3 = 0, c4 :string = "", c5 = null; constant
17 const c3 = 0, c4 = "", c5 = null; constant
DconstDeclarations-invalidContexts.js12 const c4 = 0; constant
44 const c4 = 0; constant
DconstDeclarations-errors.js5 const c3, c4, c5 :string, c6; // error, missing initialicer constant
22 const c3, c4, c5, c6; // error, missing initialicer constant
DtemplateLiteralTypes2.js6 const c4 = `abc${t}`; // `abc${T} constant
24 const c4: `abc${string}` = c1; // Type `abc${string}` constant
32 const c4 = cond ? c3 : `baz${s}`; // `foo${string}` | `bar${string}` | widening `baz${string}` constant
48 const c4 = <`foo${string}`>`foo${s}`; constant
DimplicitAnyGenerics.js9 var c4: C<any> = new C(); variable
37 var c4 = new C(); variable
DcommentsClass.js15 class c4 { class
93 var c4 = /** @class */ (function () { function
95 function c4() { function
DdeclarationEmitDestructuringObjectLiteralPattern2.js24 var _c = f15(), a4 = _c.a4, b4 = _c.b4, c4 = _c.c4; variable
41 var a4: string, b4: number, c4: boolean; variable
DambientConstLiterals.js11 const c4 = c2; constant
38 var c4 = c2; variable
DunionTypeInference.js25 const c4 = f3(b); // true constant
93 const c4 = f3(b); // true constant
DuntypedFunctionCallsWithTypeParameters1.js35 var c4: callable2<number>; variable
91 var c4; variable
/third_party/typescript/tests/cases/conformance/types/literal/
DtemplateLiteralTypes2.ts8 const c4 = `abc${t}`; // `abc${T} constant
26 const c4: `abc${string}` = c1; // Type `abc${string}` constant
34 const c4 = cond ? c3 : `baz${s}`; // `foo${string}` | `bar${string}` | widening `baz${string}` constant
50 const c4 = <`foo${string}`>`foo${s}`; constant
DliteralTypeWidening.ts10 const c4: "hello" = c1; // Type "hello" constant
18 const c4 = cond ? c3 : "baz"; // "foo" | "bar" | widening "baz" constant
34 const c4: 123 = c1; // Type 123 constant
42 const c4 = cond ? c3 : 789; // 123 | 456 | widening 789 constant
58 const c4 = <"foo">"foo"; constant
DliteralTypes2.ts27 const c4 = "abc"; constant
51 const c4 = cond ? "abc" : null; constant
78 readonly c4 = "abc"; property in C1
/third_party/typescript/tests/cases/compiler/
DaugmentedTypesClass.ts6 class c4 { public foo() { } } class
7 enum c4 { One } // error enum
DconstDeclarations.ts7 const c3 = 0, c4 :string = "", c5 = null; constant
10 for(const c4 = 0; c4 < 9; ) { break; } constant
DdeclarationEmitDestructuringObjectLiteralPattern2.ts11 var { a4, b4, c4 } = f15(); variable
14 export var { a4, b4, c4 } = f15(); variable
DdeclarationEmitDestructuringObjectLiteralPattern.ts19 var { a4, b4, c4 } = f15(); variable
22 export var { a4, b4, c4 } = f15(); variable
DcommentsFormatting.ts87 export class c4 { 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
/third_party/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/
DclassWithConstructors.ts16 var c4 = new C2(''); // ok variable
41 var c4 = new C2(''); // ok variable
/third_party/typescript/tests/cases/projects/privacyCheck-ImportInParent/
Dtest.ts53 var c4 = new mNonExported.mne.class1; variable
73 var c4 = new mNonExported.mne.class1; variable

12345678