theseion / Fuel

Fuel, the Smalltalk object serializer
https://theseion.github.io/Fuel
MIT License
28 stars 13 forks source link

Revive debugging support #293

Open seandenigris opened 5 months ago

seandenigris commented 5 months ago

I got all the tests to pass with one tiny change. Maybe it’s mostly a documentation issue? PR to follow…

I'm stashing the script here that I got to work until I can update the docs:

serializer := FLSerializer new
filePath: (FileLocator home / 'objs. fuel') fullName;
needsDebugging;
yourself.
anObject := #(1 #(42)).
analysis := serializer
object: anObject;
useDuring: [ FLAnalysis run ].
analysis pathsToEvery: [ :obj | obj isInteger and: [ obj > 2 ]
].
stale[bot] commented 3 months ago

This issue has been automatically marked as stale because it has not had recent activity. It will remain open but will probably not come into focus. If you still think this should receive some attention, leave a comment. Thank you for your contributions.