We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version
0.3.5
platform
JVM 17
problem
alter-meta! can modify metadata on vars within SCI, making future evaluation produce odd results.
alter-meta!
repro
(sci/eval-string "(-> 1 inc inc)") ;; => 3 (sci/eval-string "(alter-meta! #'-> dissoc :macro)") ;; => nil (sci/eval-string "(-> 1 inc inc)") ;; => #function[clojure.core/inc]
expected behavior
(sci/eval-string "(-> 1 inc inc)") ;; => 3 (sci/eval-string "(alter-meta! #'-> dissoc :macro)") ;; => nil (sci/eval-string "(-> 1 inc inc)") ;; => 3
Sponsor
The text was updated successfully, but these errors were encountered:
beaf5be
No branches or pull requests
version
0.3.5
platform
JVM 17
problem
alter-meta!
can modify metadata on vars within SCI, making future evaluation produce odd results.repro
expected behavior
Sponsor
The text was updated successfully, but these errors were encountered: