-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate Debugger into a distinct struct from Interpreter (#1039)
The immediate, selfish motivation for this change is that I want to add a parameter to the `Interpreter` constructor (in #1038) that is really only relevant to debugger scenarios, and I didn't want to update every single call to `Interpreter::new`. But I think this is a good change regardless. Some methods and fields in `Interpreter` are only applicable to debugging, and the rest are only applicable to not-debugging. It's really two separate use cases and two separate sets of data. I wanted to make this distinction clearer. Very open to feedback and opinions, and suggestions for further cleanup.
- Loading branch information
1 parent
9b12bf8
commit 66a8ea7
Showing
5 changed files
with
173 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.