Package soot.tagkit

Examples of soot.tagkit.SourceLnPosTag


      return methodsWithRightName;       
    }
  }

  private boolean coversLineNumber(int lineNumber, Host host) {
    SourceLnPosTag tag = (SourceLnPosTag) host.getTag("SourceLnPosTag");
    if(tag!=null) {
      if(tag.startLn()<=lineNumber && tag.endLn()>=lineNumber) {
        return true;
      }
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of soot.tagkit.SourceLnPosTag

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.