Permissions and filesystems #9

Merged
TopchetoEU merged 36 commits from TopchetoEU/perms-and-fs into master 2023-11-25 18:10:59 +00:00
Showing only changes of commit 4111dbf5c4 - Show all commits

View File

@ -11,7 +11,7 @@ public abstract class FunctionValue extends ObjectValue {
@Override
public String toString() {
return "function(...) { ...}";
return "function %s(...)".formatted(name);
}
public abstract Object call(Context ctx, Object thisArg, Object ...args);