Interface IbrainfuckVisitor<Result>
This interface defines a complete generic visitor for a parse tree produced by brainfuckParser.
Namespace: GCore.Antlr.Grammers.Brainfuck
Assembly: Brainfuck.dll
Syntax
public interface IbrainfuckVisitor<Result> : IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitFile_(brainfuckParser.File_Context)
Visit a parse tree produced by file_().
Declaration
Result VisitFile_(brainfuckParser.File_Context context)
Parameters
Type | Name | Description |
---|---|---|
brainfuckParser.File_Context | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitOpcode(brainfuckParser.OpcodeContext)
Visit a parse tree produced by opcode().
Declaration
Result VisitOpcode(brainfuckParser.OpcodeContext context)
Parameters
Type | Name | Description |
---|---|---|
brainfuckParser.OpcodeContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitStatement(brainfuckParser.StatementContext)
Visit a parse tree produced by statement().
Declaration
Result VisitStatement(brainfuckParser.StatementContext context)
Parameters
Type | Name | Description |
---|---|---|
brainfuckParser.StatementContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |