We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8319cb8 commit 1a929e8Copy full SHA for 1a929e8
README.md
@@ -25,4 +25,27 @@ My hope with this project is to create a general purpose GUI on top of the [DAP]
25
* stable
26
* TBD
27
28
+## Internals
29
+
30
+WIP
31
32
+```mermaid
33
+---
34
+title: State machine
35
36
37
+stateDiagram-v2
38
+ [*] --> Initialized: [1]
39
+ Initialized --> Running: [2]
40
+ Running --> Paused: [2]
41
+ Paused --> Running: [3]
42
+ Running --> Terminated: [5]
43
+ Terminated --> [*]
44
+```
45
46
+1. Initializing
47
+ * Set up initial state
48
49
50
[dap]: https://microsoft.github.io/debug-adapter-protocol/
51
0 commit comments