Package jadx.core.dex.nodes.parser

Examples of jadx.core.dex.nodes.parser.DebugInfoParser


  @Override
  public void visit(MethodNode mth) throws JadxException {
    int debugOffset = mth.getDebugInfoOffset();
    if (debugOffset > 0) {
      InsnNode[] insnArr = mth.getInstructions();
      DebugInfoParser debugInfoParser = new DebugInfoParser(mth, debugOffset, insnArr);
      debugInfoParser.process();

      if (insnArr.length != 0) {
        int line = insnArr[0].getSourceLine();
        if (line != 0) {
          mth.setSourceLine(line - 1);
View Full Code Here

TOP

Related Classes of jadx.core.dex.nodes.parser.DebugInfoParser

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.