Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .project
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
'srcDirectory' : ''
}
'srcDirectory' : 'src'
}
2 changes: 1 addition & 1 deletion .smalltalk.all.ston
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'Sindarin',
#directory : '.',
#directory : 'src',
#load : 'default',
#onConflict : #useIncoming,
#onUpgrade : #useIncoming,
Expand Down
2 changes: 1 addition & 1 deletion .smalltalk.release.ston
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'Sindarin',
#directory : '.',
#directory : 'src',
#onConflict : #useIncoming,
#onUpgrade : #useIncoming,
#ignoreImage : true
Expand Down
2 changes: 1 addition & 1 deletion .smalltalk.ston
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SmalltalkCISpec {
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'Sindarin',
#directory : '.',
#directory : 'src',
#load : 'default',
#onConflict : #useIncoming,
#onUpgrade : #useIncoming,
Expand Down
File renamed without changes.
25 changes: 25 additions & 0 deletions doc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Sindarin
Instanciate a UI-less debugger on your execution, allowing you to manipulate and inspect it via scripting.
The API is on the `SindarinDebugger` class.

- Original author: **Thomas Dupriez** (dupriezt on github)
- Research paper: [Sindarin: A Versatile Scripting API for the Pharo Debugger](https://hal.archives-ouvertes.fr/hal-02280915)

## Usage

```Smalltalk
dbg := SindarinDebugger debug: [<your code>].
"Manipulate and inspect the debugged execution by sending messages to dbg"
dbg step; stepOver.
dbg context inspect.
dbg currentNode inspect.
...
```

## Install
```Smalltalk
Metacello new
baseline: 'Sindarin';
repository: 'github://dupriezt/ScriptableDebugger';
load.
```
File renamed without changes.
Binary file added src/.DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.