Browse Source

Introduced the IAstVisitor interface.

pull/1/head
triton 13 years ago
parent
commit
32617e78d8
  1. 8
      src/Bridge/ASTVisitor.cs

8
src/Bridge/ASTVisitor.cs

@ -10,14 +10,18 @@ namespace Cxxi
bool AlreadyVisited(Type type); bool AlreadyVisited(Type type);
} }
public interface IAstVisitor<out T> : ITypeVisitor<T>, IDeclVisitor<T>
{
}
/// <summary> /// <summary>
/// Base class for AST visitors. /// Base class for AST visitors.
/// You can override the methods to customize the behaviour, by default /// You can override the methods to customize the behaviour, by default
/// this will visit all the nodes in a default way that should be useful /// this will visit all the nodes in a default way that should be useful
/// for a lot of applications. /// for a lot of applications.
/// </summary> /// </summary>
public abstract class AstVisitor : ITypeVisitor<bool>, IDeclVisitor<bool>, public abstract class AstVisitor : IAstVisitor<bool>, IAstVisited
IAstVisited
{ {
public ISet<object> Visited { get; private set; } public ISet<object> Visited { get; private set; }

Loading…
Cancel
Save