Visitor that knows how to visit a TExpression.
Assembly: Epic.Prelude
Declaration Syntax
C# |
public interface IVisitor<out TResult, in TExpression> : IVisitor<TResult> where TExpression : class
Generic Template Parameters
- TResult
- Type of the result of the visit.
- TExpression
- Expression to visit.
Members
All Members | Methods | ||||
Member | Description | |
---|---|---|
Visit(TExpression, IVisitContext) |
Visit the specified expression.
|
See Also