mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-03 23:54:18 +00:00
30 lines
583 B
Java
30 lines
583 B
Java
package com.jpexs.decompiler.flash.graph;
|
|
|
|
import java.util.List;
|
|
import java.util.Stack;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public interface GraphSourceItem {
|
|
|
|
public void translate(List localData, Stack<GraphTargetItem> stack, List<GraphTargetItem> output);
|
|
|
|
public boolean isJump();
|
|
|
|
public boolean isBranch();
|
|
|
|
public boolean isExit();
|
|
|
|
public long getOffset();
|
|
|
|
public boolean ignoredLoops();
|
|
|
|
public List<Integer> getBranches(GraphSource code);
|
|
|
|
public boolean isIgnored();
|
|
|
|
public void setIgnored(boolean ignored);
|
|
}
|