================ @@ -0,0 +1,27 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "lldb/Utility/AcceleratorGDBRemotePackets.h" + +using namespace lldb_private; + +llvm::json::Value lldb_private::toJSON(const AcceleratorActions &data) { + return llvm::json::Object{ + {"plugin_name", data.plugin_name}, + {"session_name", data.session_name}, ---------------- DavidSpickett wrote:
I see below that all 3 are required, so mention that too. https://github.com/llvm/llvm-project/pull/198907 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
