mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 12:44:51 +00:00
AS1/2 and AS3 now share common decompiling method
This commit is contained in:
22
trunk/src/com/jpexs/decompiler/flash/graph/ContinueItem.java
Normal file
22
trunk/src/com/jpexs/decompiler/flash/graph/ContinueItem.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user