#ifndef V8_OBJECTS_JS_RAW_JSON_H_
#define V8_OBJECTS_JS_RAW_JSON_H_
#include "src/execution/isolate.h"
#include "src/objects/object-macros.h"
namespace v8 {
namespace internal {
#include "torque-generated/src/objects/js-raw-json-tq.inc"
class JSRawJson : public TorqueGeneratedJSRawJson<JSRawJson, JSObject> {
public:
#define JS_RAW_JSON_FIELDS(V) \
V(kRawJsonInitialOffset, kTaggedSize) \
\
V(kInitialSize, 0)
DEFINE_FIELD_OFFSET_CONSTANTS(JSObject::kHeaderSize, JS_RAW_JSON_FIELDS)
#undef JS_RAW_JSON_FIELDS
static const int kRawJsonInitialIndex = 0;
inline bool HasInitialLayout(Isolate* isolate) const;
V8_WARN_UNUSED_RESULT static MaybeDirectHandle<JSRawJson> Create(
Isolate* isolate, Handle<Object> text);
DECL_PRINTER(JSRawJson)
TQ_OBJECT_CONSTRUCTORS(JSRawJson)
};
}
}
#include "src/objects/object-macros-undef.h"
#endif