https://github.com/samth/object-backtrace
find out what keeps an object alive
https://github.com/samth/object-backtrace
Last synced: 5 months ago
JSON representation
find out what keeps an object alive
- Host: GitHub
- URL: https://github.com/samth/object-backtrace
- Owner: samth
- Created: 2020-04-13T20:35:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-16T21:09:42.000Z (about 4 years ago)
- Last Synced: 2025-03-17T18:01:23.828Z (over 1 year ago)
- Language: Racket
- Homepage:
- Size: 1000 Bytes
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# object-backtrace
Shows what keeps an object alive. Requires Racket CS.
#### Using
```
[samth@homer:~/.../src/build/ChezScheme (master) plt] racketcs
Welcome to Racket v7.6.0.18 [cs].
> (require object-backtrace)
> (object-backtrace map)
'#hasheq((# . (#))
(# . (#))
(# . ()))
> (object-referrer map)
'(#)
```
#### Installing
```
raco pkg install object-backtrace
```