diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-06-21 10:49:39 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 10:49:39 +0530 |
commit | b4939f33795b42f4a6bb47a803a9c83b531454a4 (patch) | |
tree | c666a9daef5cdfc05644a233910f60f9ecd98634 /ext/node/ops/vm.rs | |
parent | 88e3f465d3a95db277ac7e685a0ed239958f8e6e (diff) |
fix: upgrade deno_core to 0.291.0 (#24297)
Diffstat (limited to 'ext/node/ops/vm.rs')
-rw-r--r-- | ext/node/ops/vm.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/node/ops/vm.rs b/ext/node/ops/vm.rs index 7b12b72b7..2614c4f73 100644 --- a/ext/node/ops/vm.rs +++ b/ext/node/ops/vm.rs @@ -29,6 +29,8 @@ pub struct Script { inner: i::ContextifyScript, } +impl deno_core::GcResource for Script {} + impl Script { fn new( scope: &mut v8::HandleScope, |