Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ASTVisitor

A visitor is provided to visit, it contains the collection of relevant functions to be called during the visitor's traversal.

type ASTVisitor = EnterLeaveVisitor<ASTNode> | KindVisitor;

§Type

§
EnterLeaveVisitor<ASTNode> | KindVisitor
[src]