mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
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:
parent
ea419a6e39
commit
928f26db78
53 changed files with 713 additions and 321 deletions
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue