https://github.com/abstraktor/multileveldebugging-qoppas
qoppa in squeak
https://github.com/abstraktor/multileveldebugging-qoppas
debugger qoppa scheme-interpreter squeak
Last synced: 3 months ago
JSON representation
qoppa in squeak
- Host: GitHub
- URL: https://github.com/abstraktor/multileveldebugging-qoppas
- Owner: abstraktor
- License: mit
- Created: 2015-10-28T15:54:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-28T20:16:40.000Z (about 6 years ago)
- Last Synced: 2025-02-01T22:13:14.130Z (5 months ago)
- Topics: debugger, qoppa, scheme-interpreter, squeak
- Language: HTML
- Homepage:
- Size: 2.63 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QoppaS [](http://travis-ci.org/abstraktor/multileveldebugging-QoppaS)
An implementation of [Qoppa Scheme](http://mainisusuallyafunction.blogspot.de/2012/04/scheme-without-special-forms.html) in [Squeak](http://squeak.org/) using [Ohm-S](https://github.com/hpi-swa/Ohm-S)
in order to explore debugging on multiple levels.# Usage
```smalltalk
"open a read eval print window"
QoppaScriptsDemo openRepl"use our multilevel debugger to debug a block"
TBMLD runDebugged: [1/0]
```# Installation
1. Get [Squeak 4.6 or later](http://www.squeak.org) with a recent [CogVM](http://www.mirandabanda.org/files/Cog/VM/) for your operating system.
2. If not already integrated, load [Metacello](https://github.com/Metacello/metacello). Learn how it [works](https://github.com/dalehenrich/metacello-work/blob/master/docs/MetacelloUserGuide.md).```smalltalk
Installer ensureRecentMetacello.
```3. Install VMMaker
4. Finally, install QoppaS:```smalltalk
Metacello new
baseline: 'QoppaS';
repository: 'github://abstraktor/multileveldebugging-QoppaS/packages';
load.```
# Contributing
1. Checkout this git repository
2. [Install QoppaS with Filetree](https://github.com/abstraktor/multileveldebugging-QoppaS/wiki/Installing-QoppaS)
3. Commit your changes to the filetree repository
4. Copy over your commit message to create a git commit with it
5. [Push it](https://open.spotify.com/track/2ipW48mvWEkQoZZMpLL9TX)# Publications
- [Multi-level debugging for interpreter developers (Working Paper on Modularity'16)](https://doi.org/10.1145/2892664.2892679)
- [Crossing Abstraction Barriers When Debugging in Dynamic Languages (OOPS'17 at SAC)](https://doi.org/10.1145/3019612.3019734)