Repository URL to install this package:
|
Version:
2023.12.1 ▾
|
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
namespace Antlr4.Runtime.Tree
{
/// <summary>This interface defines the basic notion of a parse tree visitor.</summary>
/// <remarks>
/// This interface defines the basic notion of a parse tree visitor. Generated
/// visitors implement this interface and the
/// <c>XVisitor</c>
/// interface for
/// grammar
/// <c>X</c>
/// .
/// </remarks>
/// <author>Sam Harwell</author>
public interface IParseTreeVisitor<out Result>
{
/// <summary>Visit a parse tree, and return a user-defined result of the operation.</summary>
/// <remarks>Visit a parse tree, and return a user-defined result of the operation.</remarks>
/// <param name="tree">
/// The
/// <see cref="IParseTree"/>
/// to visit.
/// </param>
/// <returns>The result of visiting the parse tree.</returns>
Result Visit(IParseTree tree);
/// <summary>
/// Visit the children of a node, and return a user-defined result
/// of the operation.
/// </summary>
/// <remarks>
/// Visit the children of a node, and return a user-defined result
/// of the operation.
/// </remarks>
/// <param name="node">
/// The
/// <see cref="IRuleNode"/>
/// whose children should be visited.
/// </param>
/// <returns>The result of visiting the children of the node.</returns>
Result VisitChildren(IRuleNode node);
/// <summary>Visit a terminal node, and return a user-defined result of the operation.</summary>
/// <remarks>Visit a terminal node, and return a user-defined result of the operation.</remarks>
/// <param name="node">
/// The
/// <see cref="ITerminalNode"/>
/// to visit.
/// </param>
/// <returns>The result of visiting the node.</returns>
Result VisitTerminal(ITerminalNode node);
/// <summary>Visit an error node, and return a user-defined result of the operation.</summary>
/// <remarks>Visit an error node, and return a user-defined result of the operation.</remarks>
/// <param name="node">
/// The
/// <see cref="IErrorNode"/>
/// to visit.
/// </param>
/// <returns>The result of visiting the node.</returns>
Result VisitErrorNode(IErrorNode node);
}
}