Class nanofuckBaseVisitor<Result>
This class provides an empty implementation of InanofuckVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.
Inheritance
System.Object
nanofuckBaseVisitor<Result>
Namespace: GCore.Antlr.Grammers.Nanofuck
Assembly: Nanofuck.dll
Syntax
public class nanofuckBaseVisitor<Result> : AbstractParseTreeVisitor<Result>, InanofuckVisitor<Result>, IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitExp(nanofuckParser.ExpContext)
Visit a parse tree produced by exp().
The default implementation returns the result of calling context
.
Declaration
public virtual Result VisitExp(nanofuckParser.ExpContext context)
Parameters
Type | Name | Description |
---|---|---|
nanofuckParser.ExpContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
Implements
IParseTreeVisitor<>