Interface IlambdaVisitor<Result>
This interface defines a complete generic visitor for a parse tree produced by lambdaParser.
Namespace: GCore.Antlr.Grammers.Lambda
Assembly: Lambda.dll
Syntax
public interface IlambdaVisitor<Result> : IParseTreeVisitor<Result>
Type Parameters
Name | Description |
---|---|
Result | The return type of the visit operation. |
Methods
| Improve this Doc View SourceVisitApplication(lambdaParser.ApplicationContext)
Visit a parse tree produced by application().
Declaration
Result VisitApplication(lambdaParser.ApplicationContext context)
Parameters
Type | Name | Description |
---|---|---|
lambdaParser.ApplicationContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitExpression(lambdaParser.ExpressionContext)
Visit a parse tree produced by expression().
Declaration
Result VisitExpression(lambdaParser.ExpressionContext context)
Parameters
Type | Name | Description |
---|---|---|
lambdaParser.ExpressionContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitFunction_(lambdaParser.Function_Context)
Visit a parse tree produced by function_().
Declaration
Result VisitFunction_(lambdaParser.Function_Context context)
Parameters
Type | Name | Description |
---|---|---|
lambdaParser.Function_Context | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |
VisitScope(lambdaParser.ScopeContext)
Visit a parse tree produced by scope().
Declaration
Result VisitScope(lambdaParser.ScopeContext context)
Parameters
Type | Name | Description |
---|---|---|
lambdaParser.ScopeContext | context | The parse tree. |
Returns
Type | Description |
---|---|
Result |