================ @@ -0,0 +1,33 @@ +//===----------------------------------------------------------------------===// +// +// 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 +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_SOURCE_PLUGINS_BUGREPORTER_GITHUB_BUGREPORTERGITHUB_H +#define LLDB_SOURCE_PLUGINS_BUGREPORTER_GITHUB_BUGREPORTERGITHUB_H + +#include "lldb/Core/BugReporter.h" + +namespace lldb_private { + +/// Opens a pre-filled github.com/llvm/llvm-project "new issue" page. The body +/// carries a short summary and points at the on-disk bundle to attach, since +/// large artifacts cannot travel in the URL. +class BugReporterGitHub : public BugReporter { ---------------- JDevlieghere wrote:
Sounds good, I'll hoist this into LLVM in a follow-up PR so we can show how it's actually used in both LLDB and adopt it in clang if it's not there already. https://github.com/llvm/llvm-project/pull/206607 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
