snek
snek
i can noodle around with this and my current pr count drops a little bit i'll see if i can do something actionable
so far my idea basically revolves around separating sandbox and global object ```js > const g = process.binding('contextify').makeContext({ a: 1 }, { name: 'owo' }) undefined > g.global = g...
passing `V8_FROM_SOURCE=1 GN_ARGS="line_tables_only=false no_inline_line_tables=false symbol_level=2 use_debug_fission=false"` should work i think.
IIRC crates.io will not accept publishing this due to it modifying its own source. Can you double check with `cargo publish --dry-run`?
looks like a transient network issue yes. wrt publishing, I don't think we can accept using --allow-dirty, just to ensure the integrity of what we are publishing.
can you update the other things you use that rely on abseil?
That file needs to be present for building from source right?
Yes I'm saying, building the crates.io release from source is currently a supported feature.
given that this code path is reachable (e.g. `DENO_SERVE_ADDRESS=vsock:-1:8080 deno serve -A --unstable-vsock test.ts`) I think this PR makes more sense than the one removing the logging logic.
This is correct, `v8::Isolate` is not a thread safe type. Lockers (https://github.com/denoland/rusty_v8/issues/643) would allow this.