Improve convert function to string.

This commit is contained in:
Enyby
2018-09-16 18:38:49 +03:00
committed by GitHub
parent c6fe5d3ed3
commit e9db487d97

View File

@@ -139,7 +139,7 @@ abstract public class LibFunction extends LuaFunction {
} }
public String tojstring() { public String tojstring() {
return name != null? name: super.tojstring(); return name != null ? "function: " + name : super.tojstring();
} }
/** /**