Home
last modified time | relevance | path

Searched refs:IntersectionTypeNode (Results 1 – 11 of 11) sorted by relevance

/third_party/typescript/src/compiler/factory/
DnodeTests.ts278 export function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode {
DnodeFactory.ts2038 const node = createBaseNode<UnionTypeNode | IntersectionTypeNode>(kind);
2061 function createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode {
2062 …ypes, parenthesizerRules().parenthesizeConstituentTypesOfIntersectionType) as IntersectionTypeNode;
2066 … function updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>) {
/third_party/typescript/lib/
Dtypescript.d.ts991 export type UnionOrIntersectionTypeNode = UnionTypeNode | IntersectionTypeNode;
996 export interface IntersectionTypeNode extends TypeNode { interface
3724 createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode;
3725 …updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>): IntersectionTy…
5057 function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode;
7641 const createIntersectionTypeNode: (types: readonly TypeNode[]) => IntersectionTypeNode;
7643 …onst updateIntersectionTypeNode: (node: IntersectionTypeNode, types: NodeArray<TypeNode>) => Inter…
DtypescriptServices.d.ts991 export type UnionOrIntersectionTypeNode = UnionTypeNode | IntersectionTypeNode;
996 export interface IntersectionTypeNode extends TypeNode { interface
3724 createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode;
3725 …updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>): IntersectionTy…
5057 function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode;
7641 const createIntersectionTypeNode: (types: readonly TypeNode[]) => IntersectionTypeNode;
7643 …onst updateIntersectionTypeNode: (node: IntersectionTypeNode, types: NodeArray<TypeNode>) => Inter…
Dtsserverlibrary.d.ts991 export type UnionOrIntersectionTypeNode = UnionTypeNode | IntersectionTypeNode;
996 export interface IntersectionTypeNode extends TypeNode { interface
3724 createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode;
3725 …updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>): IntersectionTy…
5057 function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode;
11587 const createIntersectionTypeNode: (types: readonly TypeNode[]) => IntersectionTypeNode;
11589 …onst updateIntersectionTypeNode: (node: IntersectionTypeNode, types: NodeArray<TypeNode>) => Inter…
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts991 export type UnionOrIntersectionTypeNode = UnionTypeNode | IntersectionTypeNode;
996 export interface IntersectionTypeNode extends TypeNode { interface
3724 createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode;
3725 …updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>): IntersectionTy…
5057 function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode;
7641 const createIntersectionTypeNode: (types: readonly TypeNode[]) => IntersectionTypeNode;
7643 …onst updateIntersectionTypeNode: (node: IntersectionTypeNode, types: NodeArray<TypeNode>) => Inter…
Dtsserverlibrary.d.ts991 export type UnionOrIntersectionTypeNode = UnionTypeNode | IntersectionTypeNode;
996 export interface IntersectionTypeNode extends TypeNode { interface
3724 createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode;
3725 …updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>): IntersectionTy…
5057 function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode;
11587 const createIntersectionTypeNode: (types: readonly TypeNode[]) => IntersectionTypeNode;
11589 …onst updateIntersectionTypeNode: (node: IntersectionTypeNode, types: NodeArray<TypeNode>) => Inter…
/third_party/typescript/src/compiler/
Dtypes.ts1000 | IntersectionTypeNode
2045 export type UnionOrIntersectionTypeNode = UnionTypeNode | IntersectionTypeNode;
2052 export interface IntersectionTypeNode extends TypeNode {
7998 createIntersectionTypeNode(types: readonly TypeNode[]): IntersectionTypeNode;
7999 …updateIntersectionTypeNode(node: IntersectionTypeNode, types: NodeArray<TypeNode>): IntersectionTy…
Demitter.ts1439 return emitIntersectionType(node as IntersectionTypeNode);
2337 function emitIntersectionType(node: IntersectionTypeNode) {
Dparser.ts755 …function forEachChildInUnionOrIntersectionType<T>(node: UnionTypeNode | IntersectionTypeNode, cbNo…
Dchecker.ts15521 function getTypeFromIntersectionTypeNode(node: IntersectionTypeNode): Type {
17137 return getTypeFromIntersectionTypeNode(node as IntersectionTypeNode);