mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 18:34:45 +00:00
AS2 constructor name decompilation fix
This commit is contained in:
@@ -254,4 +254,11 @@ public class DirectValueActionItem extends ActionItem {
|
||||
}
|
||||
return (String) getResult();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return ""+getResult();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -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<>();
|
||||
|
||||
Reference in New Issue
Block a user