export interface Visitor { onEnter?: (node: Node, ctx: Context) => Generator; onLeave?: (node: Node, ctx: Context) => Generator; }