-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move base modules as root, misc changes, prep rewrite
- Loading branch information
Showing
15 changed files
with
124 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,11 @@ | |
/// Authors: dd86k <[email protected]> | ||
/// Copyright: dd86k <[email protected]> | ||
/// License: BSD-3-Clause-Clear | ||
module adapter.base; | ||
module adapters; | ||
|
||
public import transport.base : ITransport; | ||
import adapter.types; | ||
public import transports : ITransport; | ||
import types; | ||
import debuggers; | ||
import core.thread : Thread; | ||
import std.datetime : Duration, dur; | ||
import ddlogger; | ||
|
@@ -18,7 +19,6 @@ abstract class Adapter | |
{ | ||
this(ITransport t) | ||
{ | ||
assert(t); | ||
transport = t; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,23 @@ | |
/// Authors: dd86k <[email protected]> | ||
/// Copyright: dd86k <[email protected]> | ||
/// License: BSD-3-Clause-Clear | ||
module debugger.base; | ||
module debuggers; | ||
|
||
import adapter.types : AdapterEvent; | ||
import types; | ||
|
||
struct ThreadInfo | ||
{ | ||
int id; | ||
string name; | ||
} | ||
|
||
struct FrameInfo | ||
{ | ||
ulong address; | ||
string functionName; | ||
int line; | ||
} | ||
|
||
interface IDebugger | ||
{ | ||
/// Launch a new process with the debugger. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.