Interface IinfVisitor<Result>
This interface defines a complete generic visitor for a parse tree produced by infParser.
Namespace: GCore.Antlr.Grammers.Inf
Assembly: Inf.dll
Syntax
public interface IinfVisitor<Result> : IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitInf(infParser.InfContext)
Visit a parse tree produced by inf().
Declaration
Result VisitInf(infParser.InfContext context)
Parameters
Type | Name | Description |
---|---|---|
infParser.InfContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitLine(infParser.LineContext)
Visit a parse tree produced by line().
Declaration
Result VisitLine(infParser.LineContext context)
Parameters
Type | Name | Description |
---|---|---|
infParser.LineContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitSection(infParser.SectionContext)
Visit a parse tree produced by section().
Declaration
Result VisitSection(infParser.SectionContext context)
Parameters
Type | Name | Description |
---|---|---|
infParser.SectionContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitSectionheader(infParser.SectionheaderContext)
Visit a parse tree produced by sectionheader().
Declaration
Result VisitSectionheader(infParser.SectionheaderContext context)
Parameters
Type | Name | Description |
---|---|---|
infParser.SectionheaderContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitString(infParser.StringContext)
Visit a parse tree produced by
Declaration
Result VisitString(infParser.StringContext context)
Parameters
Type | Name | Description |
---|---|---|
infParser.StringContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitStringlist(infParser.StringlistContext)
Visit a parse tree produced by stringlist().
Declaration
Result VisitStringlist(infParser.StringlistContext context)
Parameters
Type | Name | Description |
---|---|---|
infParser.StringlistContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |