/third_party/typescript/tests/baselines/reference/ |
D | keyofIntersection.js | 6 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>;
|
D | keyofIntersection.symbols | 15 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))
|
D | neverUnionIntersection.symbols | 5 type T02 = string & never; 6 >T02 : Symbol(T02, Decl(neverUnionIntersection.ts, 0, 26))
|
D | keyofIntersection.types | 13 type T02<T> = keyof (T & B); // "b" | keyof T 14 >T02 : keyof T | "b" 22 type T05 = T02<A>; // "a" | "b"
|
D | neverUnionIntersection.types | 5 type T02 = string & never; 6 >T02 : never
|
D | mappedTypes1.js | 6 type T02 = { [P in "a" | "b"]: Item[P]; } 61 type T02 = {
|
D | mappedTypes4.js | 30 type T02 = Boxified<A | B[] | C | string> 112 type T02 = Boxified<A | B[] | C | string>;
|
D | restTupleElements1.js | 4 type T02 = [string?, string]; // Error 104 type T02 = [string?, string];
|
D | neverUnionIntersection.js | 3 type T02 = string & never;
|
D | mappedTypes1.symbols | 17 type T02 = { [P in "a" | "b"]: Item[P]; } 18 >T02 : Symbol(T02, Decl(mappedTypes1.ts, 3, 35))
|
D | mappedTypes4.symbols | 93 type T02 = Boxified<A | B[] | C | string> 94 >T02 : Symbol(T02, Decl(mappedTypes4.ts, 27, 50))
|
D | restTupleElements1.symbols | 8 type T02 = [string?, string]; // Error 9 >T02 : Symbol(T02, Decl(restTupleElements1.ts, 1, 29))
|
D | mappedTypes1.types | 14 type T02 = { [P in "a" | "b"]: Item[P]; } 15 >T02 : { a: string; b: number; }
|
D | mappedTypes4.types | 80 type T02 = Boxified<A | B[] | C | string> 81 >T02 : string | Boxified<A> | Boxified<C> | Box<B>[]
|
D | genericRestParameters2.js | 69 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>; 153 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>;
|
D | mappedTypes6.types | 8 type T02<T> = { [P in keyof T]+?: T[P] }; 9 >T02 : T02<T>
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofIntersection.ts | 8 type T02<T> = keyof (T & B); // "b" | keyof T alias 11 type T05 = T02<A>; // "a" | "b"
|
/third_party/PyYAML/tests/data/ |
D | timestamp.data | 1 - 2001-12-15T02:59:43.1Z
|
D | spec-02-22.data | 1 canonical: 2001-12-15T02:59:43.1Z
|
D | construct-timestamp.data | 1 canonical: 2001-12-15T02:59:43.1Z
|
/third_party/typescript/tests/cases/conformance/types/never/ |
D | neverUnionIntersection.ts | 4 type T02 = string & never; alias
|
/third_party/typescript/tests/cases/conformance/types/tuple/ |
D | restTupleElements1.ts | 6 type T02 = [string?, string]; // Error alias
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypes1.ts | 8 type T02 = { [P in "a" | "b"]: Item[P]; } alias
|
D | mappedTypes4.ts | 32 type T02 = Boxified<A | B[] | C | string> alias
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | genericRestParameters2.ts | 71 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>; alias
|