try to improve try..catch vs loops

This commit is contained in:
Jindra Petřík
2021-02-08 20:15:19 +01:00
parent 72f0c66aa7
commit 7644eddfd3
17 changed files with 559 additions and 384 deletions
@@ -0,0 +1,16 @@
package com.jpexs.decompiler.graph;
import java.util.HashSet;
import java.util.Set;
/**
*
* @author JPEXS
*/
public class ThrowState {
public int exceptionId;
public int state;
public Set<GraphPart> throwingParts = new HashSet<>();
public GraphPart targetPart;
}