DrRacket REPL is broken #4
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: suzanne.soy/hyper-literate#4
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When running a hyper-literate module in DrRacket, none of the identifiers bound in the module seem to exist in the REPL.
This is because an extra scope is added on the whole body of the module.
ae57a0d043/private/common.rkt (L176)
As a quick fix, you can replace
#,(meta-language-nesting #'expanded-body)
with#,(values #'expanded-body)
in your copy of the file (in~/.racket/YOUR_VERSION/pkgs/hyper-literate/private/common.rkt
).I'll push a fix soon which disables that scope with an option. Unfortunately, I cannot remove it without a second thought, because that would likely be a breaking change, and I have no way to test for regressions.
TL;DR: hyper-literate is a hack, and contains quite a few bugs that cannot be avoided due to Racket's module, scope and expansion systems.
Racket's notions of scopes, modules, submodules and expansion are fairly broken. Hyper-literate splits the document into two parts (the
chunk
s put in the right order, and the prose rendered with scribble), and injects arequire
for the language that you specified (e.g.typed/racket
).There is no clean way to do this without breaking things with the
chunk
part or with thedoc
part. For example, you'll notice that DrRacket does not draw arrows forscribble
identifiers (e.g.bold
) and there's no way that I could find to fix that.