mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-04 02:20:20 +00:00
AS1/2 and AS3 now share common decompiling method
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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 List<Integer> getBranches(GraphSource code);
|
||||
}
|
||||
Reference in New Issue
Block a user