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
$ plk ClojureScript 1.10.520 cljs.user=> (import '(goog Uri)) nil cljs.user=> (ns-imports 'cljs.user) {Uri #object[Function]} cljs.user=> (import '(goog.net Url)) Execution error (ExceptionInfo) at (<cljs repl>:1). No such namespace: goog.net.Url, could not locate goog/net/Url.cljs, goog/net/Url.cljc, or JavaScript source providing "goog.net.Url" cljs.user=> (ns-imports 'cljs.user) Execution error (Error) at (<cljs repl>:1). undefined is not an object (evaluating 'goog.net.Url')
The above (where ns-imports no longer works) doesn't happen in JVM ClojureScript.
ns-imports
The text was updated successfully, but these errors were encountered:
cljs.user=> (get-in @cljs.env/*compiler* [:cljs.analyzer/namespaces 'cljs.user :imports]) {Uri goog.Uri, Url goog.net.Url}
Sorry, something went wrong.
Reinstate old compiler state rollback code
ae3c7a2
Fixes #888
Reinstate old compiler state rollback code (#896)
13a5a15
No branches or pull requests
The above (where
ns-imports
no longer works) doesn't happen in JVM ClojureScript.The text was updated successfully, but these errors were encountered: