Skip to content

Commit 02955f9

Browse files
committed
Added statement visiting to IAstVisitor.
1 parent a4ed8a5 commit 02955f9

File tree

2 files changed

+682
-1
lines changed

2 files changed

+682
-1
lines changed

src/AST/ASTVisitor.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ public interface IAstVisited
1111
bool AlreadyVisited(Type type);
1212
}
1313

14-
public interface IAstVisitor<out T> : ITypeVisitor<T>, IDeclVisitor<T>
14+
public interface IAstVisitor<out T> : ITypeVisitor<T>,
15+
IDeclVisitor<T>, IStmtVisitor<T>
1516
{
1617
AstVisitorOptions VisitOptions { get; }
1718
}

0 commit comments

Comments
 (0)