try to improve try..catch vs loops

This commit is contained in:
Jindra Petřík
2021-02-06 22:03:04 +01:00
parent 72f0c66aa7
commit 7644eddfd3
17 changed files with 559 additions and 384 deletions

View File

@@ -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;
}