try solving autos when a related constraint is added

This commit is contained in:
2025-01-02 22:44:17 -08:00
parent 591608eece
commit 5a6dcdb92b
5 changed files with 84 additions and 26 deletions

View File

@@ -121,6 +121,7 @@ export let shim: NodeShim = {
},
openSync(name: string, mode: string) {
console.log("open", name, mode);
if (name.startsWith('./')) name = name.slice(2)
let te = new TextEncoder();
let fd = shim.fds.findIndex((x) => !x);