Warning, file /include/node/v8-json.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005 #ifndef INCLUDE_V8_JSON_H_
0006 #define INCLUDE_V8_JSON_H_
0007
0008 #include "v8-local-handle.h" // NOLINT(build/include_directory)
0009 #include "v8config.h" // NOLINT(build/include_directory)
0010
0011 namespace v8 {
0012
0013 class Context;
0014 class Value;
0015 class String;
0016
0017
0018
0019
0020 class V8_EXPORT JSON {
0021 public:
0022
0023
0024
0025
0026
0027
0028
0029
0030 static V8_WARN_UNUSED_RESULT MaybeLocal<Value> Parse(
0031 Local<Context> context, Local<String> json_string);
0032
0033
0034
0035
0036
0037
0038
0039
0040 static V8_WARN_UNUSED_RESULT MaybeLocal<String> Stringify(
0041 Local<Context> context, Local<Value> json_object,
0042 Local<String> gap = Local<String>());
0043 };
0044
0045 }
0046
0047 #endif