
- VS Code extension: - Add module symbol table viewer using [Tabulator](https://tabulator.info/) for sorting and formatting rows. - Add context menu action to the modules tree. - lldb-dap - Add `DAPGetModuleSymbolsRequest` to get symbols from a module. Fixes #140626 [Screencast From 2025-08-15 19-12-33.webm](https://github.com/user-attachments/assets/75e2f229-ac82-487c-812e-3ea33a575b70)
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
//===-- EventHelper.h -----------------------------------------------------===//
|
|
//
|
|
// 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_TOOLS_LLDB_DAP_EVENTHELPER_H
|
|
#define LLDB_TOOLS_LLDB_DAP_EVENTHELPER_H
|
|
|
|
#include "DAPForward.h"
|
|
#include "llvm/Support/Error.h"
|
|
|
|
namespace lldb_dap {
|
|
struct DAP;
|
|
|
|
enum LaunchMethod { Launch, Attach, AttachForSuspendedLaunch };
|
|
|
|
/// Sends target based capabilities and lldb-dap custom capabilities.
|
|
void SendExtraCapabilities(DAP &dap);
|
|
|
|
void SendProcessEvent(DAP &dap, LaunchMethod launch_method);
|
|
|
|
llvm::Error SendThreadStoppedEvent(DAP &dap, bool on_entry = false);
|
|
|
|
void SendTerminatedEvent(DAP &dap);
|
|
|
|
void SendStdOutStdErr(DAP &dap, lldb::SBProcess &process);
|
|
|
|
void SendContinuedEvent(DAP &dap);
|
|
|
|
void SendProcessExitedEvent(DAP &dap, lldb::SBProcess &process);
|
|
|
|
} // namespace lldb_dap
|
|
|
|
#endif
|