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

visitInParallel

Creates a new visitor instance which delegates to many visitors to run in parallel. Each visitor will be visited for each node before moving on.

If a prior visitor edits a node, no following visitors will see that node.

function visitInParallel(visitors: ReadonlyArray<ASTVisitor>): ASTVisitor;
§
visitInParallel(visitors: ReadonlyArray<ASTVisitor>): ASTVisitor
[src]

§Parameters

§
visitors: ReadonlyArray<ASTVisitor>
[src]