deno_core
deno_core copied to clipboard
The core engine at the heart of Deno
```toml deno_core = { version = "0.311.0", optional = true } deno_ast = { version = "0.38.2", features = ["transpiling"], optional = true } ``` ``` # # Fatal process...
Use https://github.com/denoland/deno_path_util/tree/main instead.
code is here https://github.com/mediar-ai/screenpipe/blob/pipe-logs/screenpipe-core/src/pipes.rs https://github.com/mediar-ai/screenpipe/blob/4ff7d7d4b81a2f9ca54abc5f40b63f3169f8f770/screenpipe-server/src/bin/screenpipe-server.rs#L474 js code: https://github.com/mediar-ai/screenpipe/blob/pipe-logs/examples/typescript/pipe-stream-ocr-text/main.js is that the right way to run multiple JS/TS file in parallel? error is nondeterministic, sometimes it runs sometimes it crashes not...
This PR fixes some aliasing bugs caused by improper usage of shared and mutable references intermixed with raw pointer accesses. These have been discovered by running the testsuite under [Tree...
Fix panic when a global interceptor is misconfigured or throws an exception. Example https://github.com/denoland/deno/pull/24985#issuecomment-2365460210
In JS, code execution is always tied to some realm (or "context" in V8 terminology), which provides a global object and a set of built-ins (`Object`, `Array`, `Error`, etc.) which...
Forgot to remove in https://github.com/denoland/deno_core/pull/905.
Repro ``` pub struct Foo; impl deno_core::GarbageCollected for Foo {} #[op2(fast)] pub fn op_repro(_scope: &mut v8::HandleScope, #[cppgc] _foo: &Foo) {} ``` Fails to compile with ``` error[E0502]: cannot borrow `*fast_api_callback_options.isolate`...