1namespace jive 2{ 3 public interface ValueReturningVisitor<out Value, in T> : Visitor<T> 4 { 5 Value value { get; } 6 void reset(); 7 } 8}