rusty_v8 icon indicating copy to clipboard operation
rusty_v8 copied to clipboard

Rust bindings for the V8 JavaScript engine

Results 167 rusty_v8 issues
Sort by recently updated
recently updated
newest added

Trying to build rusty_v8 from source gives the following error on `Ubuntu 20.04.1 LTS`: ```sh Compiling rusty_v8 v0.15.0 (/workspaces/denoland/rusty_v8) Running `/workspaces/denoland/rusty_v8/target/debug/build/rusty_v8-7d1e35ddfa5d4668/build-script-build` [rusty_v8 0.15.0] thread 'main' panicked at 'ninja_gn_binaries.py download failed:...

Refs: https://github.com/denoland/deno/issues/4350 Exceptions thrown in microtask callbacks print an error message but no stacktrace and don't terminate the process. Adding bindings for the following APIs should help with that: -...

enhancement

It _might_ be a deno issue but I expect not: ``` $ target/debug/deno eval --v8-flags="--print_all_exceptions" 'throw "boom"' ========================================================= Exception thrown: 0x36bc0836fa69: [String] in OldSpace: #boom Stack Trace: # # Fatal...

bug

Hi, I noticed that in `runtime.rs` there is a TODO around supporting loading snapshots and snapshotting on the same instance. It's a feature I'd find quite useful so I did...

https://github.com/denoland/rusty_v8/blob/efe0e76a75603b70666297e9782ba01bd8ad0343/src/inspector.rs#L893-L895 It'd be quite useful if we could pass `V8ContextInfo` - it allows to set `origin` field which would help reduce some technical debt in `deno` related to REPL handling:...

Related issues: #465 #501 Currently all of V8 is bundled into librusty_v8.a but only the bits that rusty_v8 provides bindings to are needed. This becomes particularly poignant when ICU is...

I just noticed and investigated something in the output in https://github.com/denoland/deno/issues/7953 that I somehow missed the first time around, after the usual panic message: ``` fatal runtime error: failed to...

bug

See https://github.com/rust-lang/docs.rs/issues/1155, all types with generics should be wrapped in `` ` `` to suppress the markdown inline-element detection.

https://github.com/denoland/rusty_v8/releases/download doesn't exist. Hmm... .md files are auto formatted so I can't just link to the line in question... in this section is the above link. https://github.com/denoland/rusty_v8/blob/master/README.md#the-rusty_v8_mirror-environment-variable

documentation