-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Ornament component with over 19 child throw arrity exception on ClojureScript #4
Comments
Please include full stack traces and error messages when reporting an issue. |
Absolutely,
|
I see, seems this is a cljs-specific bug? Agreed that this needs fixing, we'll have to have a better look what the right approach is. Thanks for the report! |
This is a ClojureScript issue. Minimal repro: (def foo ^:foo (fn [& args]) )
(foo 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1
1 1 1 1) I've updated the title to reflect that this is ClojureScript-specific. Upstream issue: https://ask.clojure.org/index.php/11514/functions-with-metadata-can-not-take-more-than-20-arguments |
This il throwing an Arrity exception, it won't if child element count is below 20.
Wrapping the child in a [:<>] solve the issue but still it smell like a bug.
It looks like this is the issue.
The text was updated successfully, but these errors were encountered: