* Accept a visitor. * @param visitor - The visitor to accept. * @returns The result of the visitor's visit{AppNodeType} method. * @example * const visitor = new DebugVisitor() * const result = blockNode.accept(visitor) * console.log(result)
(visitor: AppNodeVisitor<T>)
| 96 | * console.log(result) |
| 97 | */ |
| 98 | accept<T>(visitor: AppNodeVisitor<T>): T |
| 99 | |
| 100 | /** |
| 101 | * Replace a transient node with the given node. |
no outgoing calls