Show / Hide Table of Contents

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 Source

VisitFile_(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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX