Ejemplo n.º 1
0
 public OpIncrement(Env env, TokenStream stream, Method method) throws CError {
   token = stream.next();
   this.method = method;
 }
Ejemplo n.º 2
0
 public OpMod(Env env, TokenStream stream, Method method) throws CError {
   token = stream.next();
   children = new Expression[2];
   this.method = method;
 }