Searched refs:InvocationKind (Results 1 – 5 of 5) sorted by relevance
3 const enum InvocationKind { Call, TypeArgs, Contextual } enum4 …interface CallInvocation { readonly kind: InvocationKind.Call; readonly node: CallLikeExpression; }5 …interface TypeArgsInvocation { readonly kind: InvocationKind.TypeArgs; readonly called: Identifier…7 readonly kind: InvocationKind.Contextual;76 case InvocationKind.Call: {84 case InvocationKind.TypeArgs: {95 case InvocationKind.Contextual:120 if (argumentInfo.invocation.kind === InvocationKind.Contextual) return undefined;168 …return !info || info.isTypeParameterList || info.invocation.kind !== InvocationKind.Call ? undefin…229 …return { isTypeParameterList, invocation: { kind: InvocationKind.Call, node: invocation }, argumen…[all …]
130518 var InvocationKind;130519 (function (InvocationKind) { argument130520 InvocationKind[InvocationKind["Call"] = 0] = "Call";130521 InvocationKind[InvocationKind["TypeArgs"] = 1] = "TypeArgs";130522 InvocationKind[InvocationKind["Contextual"] = 2] = "Contextual";130523 })(InvocationKind || (InvocationKind = {}));
129949 var InvocationKind;129950 (function (InvocationKind) { argument129951 InvocationKind[InvocationKind["Call"] = 0] = "Call";129952 InvocationKind[InvocationKind["TypeArgs"] = 1] = "TypeArgs";129953 InvocationKind[InvocationKind["Contextual"] = 2] = "Contextual";129954 })(InvocationKind || (InvocationKind = {}));