Home
last modified time | relevance | path

Searched refs:IntersectionInline (Results 1 – 4 of 4) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DintersectionTypeNormalization.types110 type IntersectionInline = { kind: 'int', num: number } & ToString
111 >IntersectionInline : ({ kind: 'int'; num: number; } & ToString) | ({ kind: 'string'; str: string; …
DintersectionTypeNormalization.js53 type IntersectionInline = { kind: 'int', num: number } & ToString
DintersectionTypeNormalization.symbols212 type IntersectionInline = { kind: 'int', num: number } & ToString
213 >IntersectionInline : Symbol(IntersectionInline, Decl(intersectionTypeNormalization.ts, 49, 45))
/third_party/typescript/tests/cases/compiler/
DintersectionTypeNormalization.ts52 type IntersectionInline = { kind: 'int', num: number } & ToString alias