🏠FunctionsgetVisitFngetVisitFn CallablegetVisitFn(visitor: ASTVisitor, kind: Kind, isLeaving: boolean): ASTVisitFn<ASTNode> | undefinedGiven a visitor instance, if it is leaving or not, and a node kind, return the function the visitor runtime should call.@deprecatedPlease use getEnterLeaveForKind instead. Will be removed in v17Parametersvisitor: ASTVisitorkind: KindisLeaving: booleanReturns ASTVisitFn<ASTNode> | undefined
Given a visitor instance, if it is leaving or not, and a node kind, return the function the visitor runtime should call.
Please use
getEnterLeaveForKind
instead. Will be removed in v17