AS2 constructor name decompilation fix

This commit is contained in:
Jindra Petřík
2014-09-21 17:00:40 +02:00
parent de06604b8d
commit 82465dad9f
2 changed files with 14 additions and 0 deletions

View File

@@ -254,4 +254,11 @@ public class DirectValueActionItem extends ActionItem {
}
return (String) getResult();
}
@Override
public String toString() {
return ""+getResult();
}
}

View File

@@ -39,6 +39,13 @@ public class GetVariableActionItem extends ActionItem {
private boolean computedCompiletime = false;
private boolean computedVariableComputed = false;
@Override
public String toString() {
return name.toString();
}
@Override
public List<GraphTargetItem> getAllSubItems() {
List<GraphTargetItem> ret = new ArrayList<>();