mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 08:06:39 +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);
|
||||
}
|
||||
String recPart = receiver.toString(constants, localRegNames) + hilight(".");
|
||||
/*String recPart = ""; receiver.toString(constants, localRegNames) + hilight(".");
|
||||
if (receiver instanceof NewActivationTreeItem) {
|
||||
recPart = "";
|
||||
}
|
||||
if (receiver instanceof ThisTreeItem) {
|
||||
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