v8
6.2.414 (node 8.16.2)
V8 is Google's open source JavaScript engine
|
#include <v8.h>
Static Public Member Functions | |
static | V8_DEPRECATED ("Use the maybe version taking context", Local< Value > Parse(Local< String > json_string)) |
static | V8_DEPRECATE_SOON ("Use the maybe version taking context", MaybeLocal< Value > Parse(Isolate *isolate, Local< String > json_string)) |
static V8_WARN_UNUSED_RESULT MaybeLocal< Value > | Parse (Local< Context > context, Local< String > json_string) |
static V8_WARN_UNUSED_RESULT MaybeLocal< String > | Stringify (Local< Context > context, Local< Object > json_object, Local< String > gap=Local< String >()) |
|
static |
|
static |
Tries to stringify the JSON-serializable object |json_object| and returns it as string if successful.
json_object | The JSON-serializable object to stringify. |
|
static |
|
static |
Tries to parse the string |json_string| and returns it as value if successful.
json_string | The string to parse. |