Home
last modified time | relevance | path

Searched defs:a11 (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DcallSignatureAssignabilityInInheritance4.ts37 a11: <T>(x: { foo: T }, y: { foo: T; bar: T }) => Base; method
65 a11: <T, U>(x: { foo: T }, y: { foo: U; bar: U }) => Base; // ok method
DconstructSignatureAssignabilityInInheritance4.ts37 a11: new <T>(x: { foo: T }, y: { foo: T; bar: T }) => Base; property
73 a11: new <T, U>(x: { foo: T }, y: { foo: U; bar: U }) => Base; // ok property
DsubtypingWithConstructSignatures5.ts42 a11: new (x: { foo: string }, y: { foo: string; bar: string }) => Base; property
65 a11: new <T extends Base>(x: T, y: T) => T; // ok property
DcallSignatureAssignabilityInInheritance5.ts42 a11: (x: { foo: string }, y: { foo: string; bar: string }) => Base; property
65 a11: <T extends Base>(x: T, y: T) => T; // ok method
DconstructSignatureAssignabilityInInheritance5.ts42 a11: new (x: { foo: string }, y: { foo: string; bar: string }) => Base; property
65 a11: new <T extends Base>(x: T, y: T) => T; // ok property
DconstructSignatureAssignabilityInInheritance2.ts41 a11: new (x: { foo: string }, y: { foo: string; bar: string }) => Base; property
82 a11: new <T extends Base>(x: T, y: T) => T; // ok property
DcallSignatureAssignabilityInInheritance2.ts41 a11: (x: { foo: string }, y: { foo: string; bar: string }) => Base; property
82 a11: <T extends Base>(x: T, y: T) => T; // ok method
DcomparisonOperatorWithSubtypeObjectOnCallSignature.ts126 let a11: { fn(...a: Base[]): void }; variable
/arkcompiler/ets_runtime/test/aottest/defineclass/
Ddefineclass.js16 function f10(a11, a12, a13) { argument
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/es6ImportNamedImportDts/
Dserver.ts23 export class a11 { } class
/arkcompiler/ets_runtime/test/moduletest/typearray/
Dtypearray.js216 const a11 = new Uint8Array(a10); constant