Interface IwlnVisitor<Result>
This interface defines a complete generic visitor for a parse tree produced by wlnParser.
Namespace: GCore.Antlr.Grammers.Wln
Assembly: Wln.dll
Syntax
public interface IwlnVisitor<Result> : IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitGroup(wlnParser.GroupContext)
Visit a parse tree produced by group().
Declaration
Result VisitGroup(wlnParser.GroupContext context)
Parameters
Type | Name | Description |
---|---|---|
wlnParser.GroupContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitSymbol(wlnParser.SymbolContext)
Visit a parse tree produced by symbol().
Declaration
Result VisitSymbol(wlnParser.SymbolContext context)
Parameters
Type | Name | Description |
---|---|---|
wlnParser.SymbolContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitWln(wlnParser.WlnContext)
Visit a parse tree produced by wln().
Declaration
Result VisitWln(wlnParser.WlnContext context)
Parameters
Type | Name | Description |
---|---|---|
wlnParser.WlnContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |