Esempio n. 1
0
 public virtual void VisitStatement(IStatement statement)
 {
     if (!_statements.Run(statement))
     {
         throw new NotImplementedException();
     }
 }
Esempio n. 2
0
 public virtual void VisitExpression(IExpression e)
 {
     if (!_expressions.Run(e))
     {
         throw new NotImplementedException();
     }
 }