0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-01-15 18:39:01 -05:00
denoland-rusty-v8/src/json.rs

38 lines
992 B
Rust
Raw Normal View History

// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
//! A JSON Parser and Stringifier.
2019-12-09 17:11:31 -05:00
use crate::Context;
use crate::Local;
use crate::String;
use crate::Value;
extern "C" {
fn v8__JSON__Parse(
context: *mut Context,
json_string: *mut String,
) -> *mut Value;
fn v8__JSON__Stringify(
context: *mut Context,
json_object: *mut Value,
) -> *mut String;
}
/// Tries to parse the string `json_string` and returns it as value if
/// successful.
pub fn parse(
mut context: Local<Context>,
mut json_string: Local<String>,
) -> Option<Local<Value>> {
unsafe { Local::from_raw(v8__JSON__Parse(&mut *context, &mut *json_string)) }
}
2019-12-09 17:11:31 -05:00
/// Tries to stringify the JSON-serializable object `json_object` and returns
/// it as string if successful.
pub fn stringify(
mut context: Local<Context>,
mut json_object: Local<Value>,
) -> Option<Local<String>> {
unsafe {
Local::from_raw(v8__JSON__Stringify(&mut *context, &mut *json_object))
2019-12-09 17:11:31 -05:00
}
}