Show / Hide Table of Contents

Interface IednVisitor<Result>

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

Namespace: GCore.Antlr.Grammers.Edn
Assembly: Edn.dll
Syntax
public interface IednVisitor<Result> : IParseTreeVisitor<Result>
Type Parameters
Name Description
Result

The return type of the visit operation.

Methods

| Improve this Doc View Source

VisitKeyword(ednParser.KeywordContext)

Visit a parse tree produced by keyword().

Declaration
Result VisitKeyword(ednParser.KeywordContext context)
Parameters
Type Name Description
ednParser.KeywordContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitList_(ednParser.List_Context)

Visit a parse tree produced by list_().

Declaration
Result VisitList_(ednParser.List_Context context)
Parameters
Type Name Description
ednParser.List_Context context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitMap_(ednParser.Map_Context)

Visit a parse tree produced by map_().

Declaration
Result VisitMap_(ednParser.Map_Context context)
Parameters
Type Name Description
ednParser.Map_Context context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitProgram(ednParser.ProgramContext)

Visit a parse tree produced by program().

Declaration
Result VisitProgram(ednParser.ProgramContext context)
Parameters
Type Name Description
ednParser.ProgramContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitSet_(ednParser.Set_Context)

Visit a parse tree produced by set_().

Declaration
Result VisitSet_(ednParser.Set_Context context)
Parameters
Type Name Description
ednParser.Set_Context context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitTag(ednParser.TagContext)

Visit a parse tree produced by tag().

Declaration
Result VisitTag(ednParser.TagContext context)
Parameters
Type Name Description
ednParser.TagContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitValue(ednParser.ValueContext)

Visit a parse tree produced by value().

Declaration
Result VisitValue(ednParser.ValueContext context)
Parameters
Type Name Description
ednParser.ValueContext context

The parse tree.

Returns
Type Description
Result
| Improve this Doc View Source

VisitVector(ednParser.VectorContext)

Visit a parse tree produced by vector().

Declaration
Result VisitVector(ednParser.VectorContext context)
Parameters
Type Name Description
ednParser.VectorContext context

The parse tree.

Returns
Type Description
Result
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX