Show / Hide Table of Contents

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 Source

VisitApplication(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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX