Interface ISTLVisitor<Result>
This interface defines a complete generic visitor for a parse tree produced by STLParser.
Namespace: GCore.Antlr.Grammers.Stl
Assembly: Stl.dll
Syntax
public interface ISTLVisitor<Result> : IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitFile_(STLParser.File_Context)
Visit a parse tree produced by file_().
Declaration
Result VisitFile_(STLParser.File_Context context)
Parameters
Type | Name | Description |
---|---|---|
STLParser.File_Context | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitFooter(STLParser.FooterContext)
Visit a parse tree produced by footer().
Declaration
Result VisitFooter(STLParser.FooterContext context)
Parameters
Type | Name | Description |
---|---|---|
STLParser.FooterContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitHeader(STLParser.HeaderContext)
Visit a parse tree produced by header().
Declaration
Result VisitHeader(STLParser.HeaderContext context)
Parameters
Type | Name | Description |
---|---|---|
STLParser.HeaderContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitTriangle(STLParser.TriangleContext)
Visit a parse tree produced by triangle().
Declaration
Result VisitTriangle(STLParser.TriangleContext context)
Parameters
Type | Name | Description |
---|---|---|
STLParser.TriangleContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitTriple(STLParser.TripleContext)
Visit a parse tree produced by triple().
Declaration
Result VisitTriple(STLParser.TripleContext context)
Parameters
Type | Name | Description |
---|---|---|
STLParser.TripleContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitVertex(STLParser.VertexContext)
Visit a parse tree produced by vertex().
Declaration
Result VisitVertex(STLParser.VertexContext context)
Parameters
Type | Name | Description |
---|---|---|
STLParser.VertexContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |