Home
last modified time | relevance | path

Searched defs:a7 (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DnestedBlockScopedBindings2.ts173 function a7() { function
DsubtypingWithConstructSignatures5.ts38 a7: new (x: (arg: Base) => Derived) => (r: Base) => Derived; property
61 a7: new <T extends Base, U extends Derived>(x: (arg: T) => U) => (r: T) => U; // ok property
DcallSignatureAssignabilityInInheritance5.ts38 a7: (x: (arg: Base) => Derived) => (r: Base) => Derived; property
61 a7: <T extends Base, U extends Derived>(x: (arg: T) => U) => (r: T) => U; // ok method
DconstructSignatureAssignabilityInInheritance5.ts38 a7: new (x: (arg: Base) => Derived) => (r: Base) => Derived; property
61 a7: new <T extends Base, U extends Derived>(x: (arg: T) => U) => (r: T) => U; // ok property
DconstructSignatureAssignabilityInInheritance2.ts37 a7: new (x: (arg: Base) => Derived) => (r: Base) => Derived; property
78 a7: new <T extends Base, U extends Derived>(x: (arg: T) => U) => (r: T) => U; // ok property
DcallSignatureAssignabilityInInheritance2.ts37 a7: (x: (arg: Base) => Derived) => (r: Base) => Derived; property
78 a7: <T extends Base, U extends Derived>(x: (arg: T) => U) => (r: T) => U; // ok method
DnestedBlockScopedBindings6.ts224 function a7() { function
DcomparisonOperatorWithSubtypeObjectOnConstructorSignature.ts80 let a7: { new (): Base }; variable
DcomparisonOperatorWithSubtypeObjectOnCallSignature.ts92 let a7: { fn(): void }; variable
/arkcompiler/ets_runtime/test/moduletest/typearray/
Dtypearray.js197 const a7 = new BigInt64Array(4); constant