Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,56 @@ Metacello new
repository: 'github://StevenCostiou/DebuggingSpy';
load.
```

# Recorded events

| **Type of traces** | **User activity/block event or action** | **Debugging action** | **Navigation/inspection action** | **Debugging event** | **Code edition action** |
|-----------------------------|------------------------------------------|-----------------------|-----------------------------------|---------------------|--------------------------|
| Breakpoint | | x | | | |
| Variable breakpoint | | x | | | |
| Halt change | | x | | | |
| Halt hit | | | | x | |
| Clipboard copy | | | | | x |
| Clipboard paste | | | | | x |
| Debug it | x | | | | |
| Do it | ? | | | | |
| Do it and go | ? | | | | |
| Print it | | | x | | |
| Browse context | | | x | | |
| Debugger action | | x | | | |
| Debugger opening | x | | | | |
| Full browse | | | x | | |
| Inspect attribute | x | | | | |
| Expand attribute | | | x | | |
| Navigate attribute | | | x | | |
| Inspect method | x | | | | |
| Inspect method source | x | | | | |
| Inspect object | x | | | | |
| Select inspector page | | | x | | |
| Logging error | | | | x | |
| Method added | | | | | x |
| Method modified | | | | | x |
| Method removed | | | | | x |
| Source code change | | | | | x |
| Mouse down table | | | x | | |
| Mouse enter table | | | x | | |
| Mouse enter text editor | | | x | | |
| Mouse enter window | x | | | | |
| Mouse leave window | x | | | | |
| Playground opened | x | | | | |
| Playground read | | | x | | |
| Playground write | | | | | x |
| Query browse | | | x | | |
| Start scrolling | | | x | | |
| Stop scrolling | | | x | | |
| Step | | x | | | |
| Window activated | x | | | | |
| Window opened | x | | | | |
| Window closed | x | | | | |
| Proceed command | | x | | | |
| Restart command | | x | | | |
| Return value command | | x | | | |
| Run to selection command | | x | | | |
| Step into | | x | | | |
| Step over | | x | | | |
| Step through | | x | | | |
Loading