mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-24 21:11:17 +00:00
Closures calling
This commit is contained in:
@@ -43,13 +43,13 @@ public class CallTreeItem extends TreeItem {
|
|||||||
}
|
}
|
||||||
args = args + arguments.get(a).toString(constants, localRegNames);
|
args = args + arguments.get(a).toString(constants, localRegNames);
|
||||||
}
|
}
|
||||||
String recPart = receiver.toString(constants, localRegNames) + hilight(".");
|
/*String recPart = ""; receiver.toString(constants, localRegNames) + hilight(".");
|
||||||
if (receiver instanceof NewActivationTreeItem) {
|
if (receiver instanceof NewActivationTreeItem) {
|
||||||
recPart = "";
|
recPart = "";
|
||||||
}
|
}
|
||||||
if (receiver instanceof ThisTreeItem) {
|
if (receiver instanceof ThisTreeItem) {
|
||||||
recPart = "";
|
recPart = "";
|
||||||
}
|
}*/
|
||||||
return recPart + function.toString(constants, localRegNames) + hilight("(") + args + hilight(")");
|
return function.toString(constants, localRegNames) + hilight("(") + args + hilight(")");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user