Searched refs:IntersectionTypeNode (Results 1 – 11 of 11) sorted by relevance
| /third_party/typescript/src/compiler/factory/ |
| D | nodeTests.ts | 278 export function isIntersectionTypeNode(node: Node): node is IntersectionTypeNode {
|
| D | nodeFactory.ts | 2038 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/ |
| D | typescript.d.ts | 991 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…
|
| D | typescriptServices.d.ts | 991 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…
|
| D | tsserverlibrary.d.ts | 991 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/ |
| D | typescript.d.ts | 991 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…
|
| D | tsserverlibrary.d.ts | 991 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/ |
| D | types.ts | 1000 | 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…
|
| D | emitter.ts | 1439 return emitIntersectionType(node as IntersectionTypeNode); 2337 function emitIntersectionType(node: IntersectionTypeNode) {
|
| D | parser.ts | 755 …function forEachChildInUnionOrIntersectionType<T>(node: UnionTypeNode | IntersectionTypeNode, cbNo…
|
| D | checker.ts | 15521 function getTypeFromIntersectionTypeNode(node: IntersectionTypeNode): Type { 17137 return getTypeFromIntersectionTypeNode(node as IntersectionTypeNode);
|