Esempio n. 1
0
 /// <param name="mulex">
 ///            is the multiply expression. </param>
 /// <returns> a new function. </returns>
 public virtual object visit(MulExpr ex)
 {
     ex.left().accept(this);
     ex.right().accept(this);
     return(null);
 }