mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
23 lines
453 B
Java
23 lines
453 B
Java
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;
|
|
}
|
|
}
|