mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-04 03:35:01 +00:00
AS1/2 and AS3 now share common decompiling method
This commit is contained in:
19
trunk/src/com/jpexs/decompiler/flash/graph/TrueItem.java
Normal file
19
trunk/src/com/jpexs/decompiler/flash/graph/TrueItem.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.jpexs.decompiler.flash.graph;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class TrueItem extends GraphTargetItem {
|
||||
|
||||
public TrueItem(GraphSourceItem src) {
|
||||
super(src, PRECEDENCE_PRIMARY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(List localData) {
|
||||
return "true";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user