// Copyright 2022 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/objects/js-raw-json.h" #include "src/execution/isolate.h" #include "src/heap/factory.h" #include "src/json/json-parser.h" #include "src/objects/js-raw-json-inl.h" #include "src/objects/string-inl.h" namespace v8 { namespace internal { // https://tc39.es/proposal-json-parse-with-source/#sec-json.rawjson MaybeHandle<JSRawJson> JSRawJson::Create(Isolate* isolate, Handle<Object> text) { … } } // namespace internal } // namespace v8