ILGFileParserVisitor<Result> Interface

Definition

Important

This API is not CLS-compliant.

This interface defines a complete generic visitor for a parse tree produced by LGFileParser.

[System.CLSCompliant(false)]
public interface ILGFileParserVisitor<Result> : Antlr4.Runtime.Tree.IParseTreeVisitor<Result>
[<System.CLSCompliant(false)>]
type ILGFileParserVisitor<'Result> = interface
    interface IParseTreeVisitor<'Result>
Public Interface ILGFileParserVisitor(Of Result)
Implements IParseTreeVisitor(Of Result)

Type Parameters

Result

The return type of the visit operation.

Derived
Attributes
Implements
Antlr4.Runtime.Tree.IParseTreeVisitor<Result>

Methods

VisitCommentDefinition(LGFileParser+CommentDefinitionContext)

Visit a parse tree produced by commentDefinition().

VisitErrorDefinition(LGFileParser+ErrorDefinitionContext)

Visit a parse tree produced by errorDefinition().

VisitFile(LGFileParser+FileContext)

Visit a parse tree produced by file().

VisitImportDefinition(LGFileParser+ImportDefinitionContext)

Visit a parse tree produced by importDefinition().

VisitOptionDefinition(LGFileParser+OptionDefinitionContext)

Visit a parse tree produced by optionDefinition().

VisitParagraph(LGFileParser+ParagraphContext)

Visit a parse tree produced by paragraph().

VisitTemplateBody(LGFileParser+TemplateBodyContext)

Visit a parse tree produced by templateBody().

VisitTemplateBodyLine(LGFileParser+TemplateBodyLineContext)

Visit a parse tree produced by templateBodyLine().

VisitTemplateDefinition(LGFileParser+TemplateDefinitionContext)

Visit a parse tree produced by templateDefinition().

VisitTemplateNameLine(LGFileParser+TemplateNameLineContext)

Visit a parse tree produced by templateNameLine().

Applies to