AS1/2 and AS3 now share common decompiling method

This commit is contained in:
Jindra Petk
2013-02-24 22:46:42 +01:00
parent 6d644179ca
commit 8baa5691e9
423 changed files with 5610 additions and 4709 deletions

View File

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