Home
last modified time | relevance | path

Searched defs:z (Results 1 – 25 of 125) sorted by relevance

12345

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DstringLiteralTypesOverloads04.ts25 AssertType(y => { const z = y = "foo"; return z;}, "(union) => "foo""); constant
27 AssertType(f(y => { const z = y = "foo"; return z;}), "any"); constant
29 const z = y = "foo"; constant
DbestCommonTypeWithOptionalProperties.ts31 let z: Z; variable
35 let b1 = [x, y, z]; variable
42 let b2 = [x, z, y]; variable
49 let b3 = [y, x, z]; variable
56 let b4 = [y, z, x]; variable
DcompositeGenericFunction.ts30 let z: number = h<number>(f); variable
36 let z: number = h(f); variable
DintersectionTypeEquivalence.ts33 let z : A & B & C; variable
36 let z : (A & B) & C; variable
39 let z : A & (B & C); variable
DfunctionLiteral.ts49 let z: { new (x: number): number; }; variable
53 let z: new (x: number) => number; variable
DinitializePropertiesWithRenamedLet.ts40 let x, y, z; variable
59 let z; variable
DnestedBlockScopedBindings16.ts71 let z; variable
81 let z; variable
DmergedInterfacesWithMultipleBases.ts37 z: string; property
44 z: string; property in D
69 z: T; property
76 z: boolean; property in D
DgenericClasses2.ts28 public z: Foo<number>; property in C
42 let z = v1.z.a; // should be 'number' variable
DemitClassDeclarationWithPropertyAssignmentInES6.ts38 z: boolean = true; property in E
42 z: boolean = true; property in F
DmergedInterfacesWithMultipleBases2.ts46 z: string; property
55 z: string; property in D
88 z: T; property
97 z: boolean; property in D
DdownlevelLetConst14.ts176 let z = false; variable
184 let z = ""; variable
DthisInModuleFunction1.ts27 let z = bar.bar(); variable
Des6ModuleConstEnumDeclaration2.ts31 let x = e1.a;
50 let x1 = e1.a;
66 let x1 = e1.a;
Des6ModuleConstEnumDeclaration.ts31 let x = e1.a;
50 let x1 = e1.a;
66 let x1 = e1.a;
Des6ModuleEnumDeclaration.ts31 let x = e1.a;
50 let x1 = e1.a;
66 let x1 = e1.a;
DmergedInterfacesWithMultipleBases3.ts46 z: T; property
55 z: boolean; property in D
DnumberAssignableToEnumInsideUnion.ts25 let z: E | boolean = n; variable
Dgenerics0.ts28 let z = v2.x; // 'y' should be of type 'string' variable
/arkcompiler/ets_runtime/test/moduletest/compareobjecthclass/
Dcompareobjecthclass.js24 let obj1 = {x : 1, y : 2, z :3}; property
25 let obj2 = {y : 2, x : 1, z :3}; property
26 let obj3 = {x : 11, y : 12, z :13}; property
/arkcompiler/ets_runtime/test/moduletest/multiargs/
Dmultiargs.js41 function three(x,y,z) argument
46 function four(x,y,z,t) argument
51 function five(x,y,z,t,a) argument
64 let z = 333 variable
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/doNotemitTripleSlashComments/
Dfile1.ts29 let z = "world"; variable
/arkcompiler/ets_frontend/arkguard/test/grammar/function_validation/
Dfunction_outer_variable.ts18 let z = 100; variable
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/declFileForExportedImport/
DdeclFileForExportedImport_1.ts29 let z = b.x; variable
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/elidedJSImport2modulecommonjs/
Dindex.js35 const z = new defaultFoo(); constant

12345