Home
last modified time | relevance | path

Searched defs:y3 (Results 1 – 25 of 104) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
DaugmentedTypesFunction.js14 function y3() { } // error function
15 class y3 { } // error class
53 function y3() { function
DintersectionOfUnionOfUnitTypes.js16 let y3: (0 | 1 | 2) & (3 | 4 | 5); // never variable
39 var y3; // never variable
DthisAndSuperInStaticMembers1(target=es2022).js13 static y3 = this?.x(); field in C
47 static y3 = this?.x(); field in C
DthisAndSuperInStaticMembers1(target=esnext).js13 static y3 = this?.x(); field in C
47 static y3 = this?.x(); field in C
DforIn.js16 var y3 = arr2[j]; variable
DnoImplicitAnyDestructuringVarDeclaration2.js11 let {x3 = <any>undefined, y3 = <any>null, z3 = <any>undefined} = { x3: 1, y3: 2, z3: 3 }; // no err… property
24 var _y = { x3: 1, y3: 2, z3: 3 }, _z = _y.x3, x3 = _z === void 0 ? undefined : _z, _0 = _y.y3, y3 =… property
DdeclarationEmitDestructuringArrayPattern1.js9 var [x3, y3, z3] = a; // emit x3, y3, z3 variable
DshorthandPropertyAssignmentsInDestructuring_ES6.js81 ({ y2 = 5, y3 = { x: 1 } } = {}) variable
86 ({ y2:y2 = 5, y3:y3 = { x: 1 } } = {}) variable
185 ({ y2 = 5, y3 = { x: 1 } } = {}); variable
189 ({ y2: y2 = 5, y3: y3 = { x: 1 } } = {}); variable
DinitializersWidened.js14 var y3: undefined = undefined; variable
DintersectionWithUnionConstraint.js10 let y3: string | undefined = x; variable
DnoImplicitAnyParametersInClass.js170 C.prototype.pub_f8 = function (x3, y3) { }; argument
196 C.prototype.priv_f8 = function (x3, y3) { }; argument
/third_party/typescript/tests/cases/compiler/
DaugmentedTypesFunction.ts13 function y3() { } // error function
14 class y3 { } // error class
DshorthandPropertyAssignmentsInDestructuring_ES6.ts82 let y2: string, y3: { x: string }; variable
87 let y2: string, y3: { x: string }; variable
DshorthandPropertyAssignmentsInDestructuring.ts82 let y2: string, y3: { x: string }; variable
87 let y2: string, y3: { x: string }; variable
DcontextuallyTypingRestParameters.ts6 var y3: string[] = y; // No error variable
DexternalModuleAssignToVar.ts24 var y3: new () => ext3 = ext3; variable
DdeclarationEmitDestructuringArrayPattern1.ts10 var [x3, y3, z3] = a; // emit x3, y3, z3 variable
DdeclFileTypeofClass.ts7 public y3: number; property in c
Dm7Bugs.ts24 var y3: C1 = <C1> {}; variable
DdeclFileTypeAnnotationVisibilityErrorVariableDeclaration.ts31 var y3 = new m2.public2(); variable
DforIn.ts15 var y3 = arr2[j]; variable
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/the_any_type/
Dany_type_4.ts34 let y3: boolean; variable
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/specifying_members/call_signatures/specialized_signatures/
Dspecialized_signatures_1.ts53 let y3 = x3.Tfun("helloworld"); variable
/third_party/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/
DinitializersWidened.ts13 var y3: undefined = undefined; variable
/third_party/typescript/tests/cases/conformance/jsdoc/
DjsdocFunctionType.ts72 var y3 = id2(E); variable

12345