Home
last modified time | relevance | path

Searched refs:T02 (Results 1 – 25 of 82) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DkeyofIntersection.js6 type T02<T> = keyof (T & B); // "b" | keyof T
9 type T05 = T02<A>; // "a" | "b"
42 type T02<T> = keyof (T & B);
45 type T05 = T02<A>;
DkeyofIntersection.symbols15 type T02<T> = keyof (T & B); // "b" | keyof T
16 >T02 : Symbol(T02, Decl(keyofIntersection.ts, 3, 25))
34 type T05 = T02<A>; // "a" | "b"
36 >T02 : Symbol(T02, Decl(keyofIntersection.ts, 3, 25))
DneverUnionIntersection.symbols5 type T02 = string & never;
6 >T02 : Symbol(T02, Decl(neverUnionIntersection.ts, 0, 26))
DkeyofIntersection.types13 type T02<T> = keyof (T & B); // "b" | keyof T
14 >T02 : keyof T | "b"
22 type T05 = T02<A>; // "a" | "b"
DneverUnionIntersection.types5 type T02 = string & never;
6 >T02 : never
DmappedTypes1.js6 type T02 = { [P in "a" | "b"]: Item[P]; }
61 type T02 = {
DmappedTypes4.js30 type T02 = Boxified<A | B[] | C | string>
112 type T02 = Boxified<A | B[] | C | string>;
DrestTupleElements1.js4 type T02 = [string?, string]; // Error
104 type T02 = [string?, string];
DneverUnionIntersection.js3 type T02 = string & never;
DmappedTypes1.symbols17 type T02 = { [P in "a" | "b"]: Item[P]; }
18 >T02 : Symbol(T02, Decl(mappedTypes1.ts, 3, 35))
DmappedTypes4.symbols93 type T02 = Boxified<A | B[] | C | string>
94 >T02 : Symbol(T02, Decl(mappedTypes4.ts, 27, 50))
DrestTupleElements1.symbols8 type T02 = [string?, string]; // Error
9 >T02 : Symbol(T02, Decl(restTupleElements1.ts, 1, 29))
DmappedTypes1.types14 type T02 = { [P in "a" | "b"]: Item[P]; }
15 >T02 : { a: string; b: number; }
DmappedTypes4.types80 type T02 = Boxified<A | B[] | C | string>
81 >T02 : string | Boxified<A> | Boxified<C> | Box<B>[]
DgenericRestParameters2.js69 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>;
153 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>;
DmappedTypes6.types8 type T02<T> = { [P in keyof T]+?: T[P] };
9 >T02 : T02<T>
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofIntersection.ts8 type T02<T> = keyof (T & B); // "b" | keyof T alias
11 type T05 = T02<A>; // "a" | "b"
/third_party/PyYAML/tests/data/
Dtimestamp.data1 - 2001-12-15T02:59:43.1Z
Dspec-02-22.data1 canonical: 2001-12-15T02:59:43.1Z
Dconstruct-timestamp.data1 canonical: 2001-12-15T02:59:43.1Z
/third_party/typescript/tests/cases/conformance/types/never/
DneverUnionIntersection.ts4 type T02 = string & never; alias
/third_party/typescript/tests/cases/conformance/types/tuple/
DrestTupleElements1.ts6 type T02 = [string?, string]; // Error alias
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes1.ts8 type T02 = { [P in "a" | "b"]: Item[P]; } alias
DmappedTypes4.ts32 type T02 = Boxified<A | B[] | C | string> alias
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters2.ts71 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>; alias

1234