Package soot.tagkit

Examples of soot.tagkit.LineNumberTag


    // done
    return new TranslationResult(graph, context.getHotspotMap());
  }
 
  public int getLineNumber(Unit s) {
    LineNumberTag tag = (LineNumberTag)s.getTag("LineNumberTag");
    if (tag != null)
      return tag.getLineNumber();
    return -1;
  }
View Full Code Here

TOP

Related Classes of soot.tagkit.LineNumberTag

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.