// Copyright 2019 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/torque/ls/json.h" #include <iostream> #include <sstream> #include "src/torque/utils.h" namespace v8 { namespace internal { namespace torque { namespace ls { namespace { void SerializeToString(std::stringstream& str, const JsonValue& value) { … } } // namespace std::string SerializeToString(const JsonValue& value) { … } } // namespace ls } // namespace torque } // namespace internal } // namespace v8