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
v0.5.1
platform
Linux/Fedora
problem
When attempting to call clojure.data.xml/alias-uri, bb throws a Could not resolve symbol error although other functions from data.xml work fine.
clojure.data.xml/alias-uri
Could not resolve symbol
data.xml
repro
Run bb -e "(clojure.data.xml/alias-uri 'foo 'bar)" on the command line and observe this error:
bb -e "(clojure.data.xml/alias-uri 'foo 'bar)"
----- Error -------------------------------------------------------------------- Type: clojure.lang.ExceptionInfo Message: Could not resolve symbol: clojure.data.xml/alias-uri Location: <expr>:1:2 Phase: analysis ----- Context ------------------------------------------------------------------ 1: (clojure.data.xml/alias-uri 'foo 'bar) ^--- Could not resolve symbol: clojure.data.xml/alias-uri
expected behavior
Ideally alias-url could also be exposed along with the existing ones from data.xml.
alias-url
Per the discussion earlier today on Slack: "the original function is creating a clojure ns and not a sci ns, so would need to be overridden in bb".
Source for the original function is here: https://github.com/clojure/data.xml/blob/master/src/main/clojure/clojure/data/xml/name.cljc#L99
The text was updated successfully, but these errors were encountered:
[#995] Add clojure.data.xml/alias-uri
cddd4ce
No branches or pull requests
version
v0.5.1
platform
Linux/Fedora
problem
When attempting to call
clojure.data.xml/alias-uri
, bb throws aCould not resolve symbol
error although other functions fromdata.xml
work fine.repro
Run
bb -e "(clojure.data.xml/alias-uri 'foo 'bar)"
on the command line and observe this error:expected behavior
Ideally
alias-url
could also be exposed along with the existing ones fromdata.xml
.Per the discussion earlier today on Slack: "the original function is creating a clojure ns and not a sci ns, so would need to be overridden in bb".
Source for the original function is here: https://github.com/clojure/data.xml/blob/master/src/main/clojure/clojure/data/xml/name.cljc#L99
The text was updated successfully, but these errors were encountered: