Package soot.jimple

Examples of soot.jimple.ExitMonitorStmt


    for(int j = index + 1; j < units.size(); ++j){
      Unit curr = units.get(j);
      if(curr instanceof EnterMonitorStmt){
        return true;
      } else if(curr instanceof ExitMonitorStmt){
        ExitMonitorStmt exit2 = (ExitMonitorStmt) curr;
        Local op_local2 = (Local) exit2.getOp();
        if(op_local.getName().equals(op_local2.getName())){
          return false;
        }
      }
    }
View Full Code Here

TOP

Related Classes of soot.jimple.ExitMonitorStmt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.