Package jadx.core.dex.regions

Examples of jadx.core.dex.regions.TryCatchRegion


    }
    if (tryRegion.getSubBlocks().isEmpty()) {
      return false;
    }

    TryCatchRegion tryCatchRegion = new TryCatchRegion(region, tryRegion);
    tryRegion.setParent(tryCatchRegion);
    tryCatchRegion.setTryCatchBlock(tb.getCatchAttr().getTryBlock());

    // replace first node by region
    IContainer firstNode = tryRegion.getSubBlocks().get(0);
    if (!region.replaceSubBlock(firstNode, tryCatchRegion)) {
      return false;
View Full Code Here

TOP

Related Classes of jadx.core.dex.regions.TryCatchRegion

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.