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