Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Update README.md
  • Loading branch information
StevenCostiou authored Jul 16, 2019
commit 65ce09926858848e8f5bee49d2695f3315d0e4ee
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# ScriptableDebugger
# Sindarin
Instanciate a UI-less debugger on your execution, allowing you to manipulate and inspect it via scripting.
The API is on the `ScriptableDebugger` class.
The API is on the `SindarinDebugger` class.

## Usage

```Smalltalk
dbg := ScriptableDebugger debug: [<your code>].
dbg := SindarinDebugger debug: [<your code>].
"Manipulate and inspect the debugged execution by sending messages to dbg"
dbg step; stepOver.
dbg context inspect.
Expand All @@ -16,7 +16,7 @@ dbg currentNode inspect.
## Install
```Smalltalk
Metacello new
baseline: 'ScriptableDebugger';
repository: 'github://dupriezt/ScriptableDebugger';
baseline: 'Sindarin';
repository: 'github://dupriezt/ScriptableDebugger:Sindarin';
load.
```