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
In Quick Start:
Let’s make a mistake. Try evaluating (ffirst [1]). You should get a source mapped stack trace ...
(ffirst [1])
But with recent changes stack traces are no longer printed by default:
ClojureScript 1.10.516 cljs.user=> (ffirst [1]) Execution error (Error) at (<cljs repl>:1). 1 is not ISeqable
The text was updated successfully, but these errors were encountered:
Potential solution:
Change the language to read:
Let’s make a mistake. Try evaluating (ffirst [1]) followed by (pst).
(pst)
The REPL experience at that point might look like
ClojureScript 1.10.516 cljs.user=> (ffirst [1]) Execution error (Error) at (<cljs repl>:1). 1 is not ISeqable cljs.user=> (pst) Error: 1 is not ISeqable cljs.core/seq (out/cljs/core.cljs:1226:20) cljs.core/first (out/cljs/core.cljs:1235:16) cljs$core$ffirst (out/cljs/core.cljs:1751:4)
Sorry, something went wrong.
Sounds good to me, PR welcome!
No branches or pull requests
In Quick Start:
But with recent changes stack traces are no longer printed by default:
The text was updated successfully, but these errors were encountered: