Fixed AS1/2 - ifFrameLoaded with nontrivial items inside

This commit is contained in:
Jindra Petřík
2021-11-28 10:32:51 +01:00
parent 526f484513
commit b3308a2599
8 changed files with 93 additions and 21 deletions

View File

@@ -0,0 +1,27 @@
package com.jpexs.decompiler.graph;
import java.util.List;
/**
*
* @author JPEXS
*/
public class GraphPartChangeException extends Exception {
private final int ip;
private final List<GraphTargetItem> output;
public GraphPartChangeException(List<GraphTargetItem> output, int ip) {
this.output = output;
this.ip = ip;
}
public int getIp() {
return ip;
}
public List<GraphTargetItem> getOutput() {
return output;
}
}