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
It seems CLJS starts resolving from right to left. Let's also do that.
So here it resolves cljs.core.bar and then decides that it should be something like (aget cljs.core.x.bar "baz"), vs. (aget cljs.core.x "bar.baz").
cljs.core.bar
(aget cljs.core.x.bar "baz")
(aget cljs.core.x "bar.baz")
cljs.user=> (def x (clj->js {:bar.baz 1 :bar {:baz 2}})) #'cljs.user/x cljs.user=> cljs.user.x.bar #js {:baz 2} cljs.user=> cljs.user.x.bar.baz 2
The text was updated successfully, but these errors were encountered:
79f905c
No branches or pull requests
It seems CLJS starts resolving from right to left. Let's also do that.
So here it resolves
cljs.core.bar
and then decides that it should be something like(aget cljs.core.x.bar "baz")
, vs.(aget cljs.core.x "bar.baz")
.The text was updated successfully, but these errors were encountered: