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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
the alet macro seems to require that variables are referenced in the top-level of binding forms in order to infer dependencies
alet
thus when i am calling some functions created with defnk i have to add artificial do blocks and explicitly refer to dependent variables like this https://www.refheap.com/88d7eba3d8eb9c73e2834f4d4
defnk
do
this seems like a reasonable limitation for the macro - but should be documented
The text was updated successfully, but these errors were encountered:
Hmm, this limitation shouldn't be there. You should be able to write:
(with-context pm/promise-context (alet [api-version (version {}) auth-user (retrieve-user {:token token}) auth-org-users (get-auth-org-users {:auth-user auth-user}) ;; ...
Going to take a look at this, thanks for reporting!
Sorry, something went wrong.
No branches or pull requests
the
alet
macro seems to require that variables are referenced in the top-level of binding forms in order to infer dependenciesthus when i am calling some functions created with
defnk
i have to add artificialdo
blocks and explicitly refer to dependent variables like this https://www.refheap.com/88d7eba3d8eb9c73e2834f4d4this seems like a reasonable limitation for the macro - but should be documented
The text was updated successfully, but these errors were encountered: