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,22 @@
package com.jpexs.decompiler.flash.graph;
import java.util.List;
/**
*
* @author JPEXS
*/
public class ContinueItem extends GraphTargetItem {
public long loopId;
public ContinueItem(GraphSourceItem src, long loopId) {
super(src, NOPRECEDENCE);
this.loopId = loopId;
}
@Override
public String toString(List localData) {
return hilight("continue") + " " + "loop" + loopId;
}
}