From e75ffab0c8a21ecb0827bb906905cd0315c1b5a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 9 Jun 2021 20:37:43 +0200 Subject: chore: move serde_v8 to separate repo (#10909) Now available at https://github.com/denoland/serde_v8 --- serde_v8/src/utils.rs | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 serde_v8/src/utils.rs (limited to 'serde_v8/src/utils.rs') diff --git a/serde_v8/src/utils.rs b/serde_v8/src/utils.rs deleted file mode 100644 index 8f2a7a1eb..000000000 --- a/serde_v8/src/utils.rs +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -use rusty_v8 as v8; -use std::sync::Once; - -pub fn js_exec<'s>( - scope: &mut v8::HandleScope<'s>, - src: &str, -) -> v8::Local<'s, v8::Value> { - let code = v8::String::new(scope, src).unwrap(); - let script = v8::Script::compile(scope, code, None).unwrap(); - script.run(scope).unwrap() -} - -pub fn v8_init() { - let platform = v8::new_default_platform().unwrap(); - v8::V8::initialize_platform(platform); - v8::V8::initialize(); -} - -pub fn v8_shutdown() { - unsafe { - v8::V8::dispose(); - } - v8::V8::shutdown_platform(); -} - -pub fn v8_do(f: impl FnOnce()) { - static V8_INIT: Once = Once::new(); - V8_INIT.call_once(|| { - v8_init(); - }); - f(); - // v8_shutdown(); -} -- cgit v1.2.3