feat: V8 14.0.0 (#30629)

This commit updates V8 to version 14.0.0. This update brings
changes to Temporal support too, which is close to being stabilized.

---------

Co-authored-by: snek <snek@deno.com>
This commit is contained in:
Bartek Iwańczuk 2025-09-08 22:12:54 +02:00 committed by GitHub
parent ea419a6e39
commit 928f26db78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
53 changed files with 713 additions and 321 deletions

View file

@ -31,7 +31,10 @@ impl WebIdlInterfaceConverter for GPUComputePipeline {
const NAME: &'static str = "GPUComputePipeline";
}
impl GarbageCollected for GPUComputePipeline {
// SAFETY: we're sure this can be GCed
unsafe impl GarbageCollected for GPUComputePipeline {
fn trace(&self, _visitor: &mut deno_core::v8::cppgc::Visitor) {}
fn get_name(&self) -> &'static std::ffi::CStr {
c"GPUComputePipeline"
}