Home
last modified time | relevance | path

Searched refs:T01 (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DneverUnionIntersection.ts22 type T01 = string | never;
DkeyofIntersection.ts25 type T01 = keyof (A & B); // "a" | "b" alias
DmappedTypes1.ts24 type T01 = { [P in "x" | "y"]: P }; alias
DmappedTypes4.ts75 type T01 = Readonly<A | B | C | null | undefined>; alias
DmappedTypesArraysTuples.ts25 type T01 = Partial<[number, string?, ...boolean[]]>; alias
DgenericRestParameters2.ts438 type T01 = Parameters<(x: number, y: string, ...z: boolean[]) => void>;
/arkcompiler/ets_frontend/arkguard/test/grammar/advanced_type/
Dpredefined_types.ts19 type T01 = Extract<'a' | 'b' | 'c' | 'd', 'a' | 'c' | 'f'>; // 'a' | 'c' alias