예제 #1
0
 protected boolean isArgCheck(Free v, Mapping map) {
   int ix = map.lookUp(v.var());
   if (ix >= 0) {
     v.setIsArg(ix);
     isConnected = true;
     freeVarCnt -= 1;
     return true;
   } else return false;
 }