Refactoring:

AVM2 / TreeItem => AVM2Item
Action / TreeItem => ActionItem
decompiler.flash.graph => decompiler.graph
This commit is contained in:
Jindra Pet��k
2013-07-16 05:40:32 +02:00
parent 49ef4c0961
commit bf195f1a6a
546 changed files with 3659 additions and 3517 deletions
@@ -0,0 +1,26 @@
package com.jpexs.decompiler.graph.model;
import com.jpexs.decompiler.graph.GraphSourceItem;
import com.jpexs.decompiler.graph.GraphTargetItem;
import java.util.List;
/**
*
* @author JPEXS
*/
public class TrueItem extends GraphTargetItem {
public TrueItem(GraphSourceItem src) {
super(src, PRECEDENCE_PRIMARY);
}
@Override
public String toString(List<Object> localData) {
return "true";
}
@Override
public boolean hasReturnValue() {
return true;
}
}