Add DAP multi-session support and add Node.js debugging support.

This commit is contained in:
Martín Lucas Golini
2025-06-22 01:48:17 -03:00
parent 03df17b96b
commit 5cc94842e1
17 changed files with 870 additions and 516 deletions

View File

@@ -22,6 +22,12 @@ class BusSocketProcess : public Bus {
bool hasProcess() override { return true; }
Type type() const override { return Bus::Type::SocketProcess; }
const Command& getCommand() const { return mCommand; }
const Connection& getConnection() const { return mConnection; }
protected:
Command mCommand;
Connection mConnection;