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,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";
}
}