add buffer and byte objects, making socket read and write faster

This commit is contained in:
2023-06-24 10:30:34 +01:00
parent f63229c6f8
commit 4ca158cc96
8 changed files with 354 additions and 50 deletions

View File

@@ -216,7 +216,7 @@ func runVal(line any, stack stack, stacklevel int) (any, ArErr) {
break
}
return runTryCatch(x, stack, stacklevel+1)
case bool, ArObject, number, nil, Callable:
case bool, ArObject, number, nil, Callable, builtinFunc, anymap:
return x, ArErr{}
}
if stackoverflow {