-
-
Notifications
You must be signed in to change notification settings - Fork 247
Support clojure-dart #615
New issue
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
Labels
Comments
Are there any syntax differences between Clojure and ClojureDart? |
As pointed here: https://github.com/Tensegritics/ClojureDart/blob/main/doc/differences.md
(try
...
(catch io/HttpException e ; no stack trace binding
...)
(catch Exception e st ; stack trace binding
...))
(. a "[]=" i v)
#dart [1 2 3] ; a growable List<dynamic>
#dart ^:fixed [1 2 3] ; a fixed List<dynamic>
#dart ^int [1 2 3] ; a growable List<int>
#dart ^:fixed ^int [1 2 3] ; a fixed List<int>
(reify
:extends material/StatelesWidget
(build [_ ctx] ...)) |
jgoday
added a commit
to jgoday/clojure-mode
that referenced
this issue
Apr 18, 2022
bbatsov
pushed a commit
that referenced
this issue
Apr 18, 2022
Released as clojure-mode 5.15.0, which will be available within a couple hours |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Support clojure-dart source files.
Currently, clojure-dart files are basically clojure source files that compiles to dart.
See:
Expected behavior
Clojure-mode should support clojure-dart files (.cljd).
Actual behavior
Current clojure-mode does not detect .cljd files.
Steps to reproduce the problem
Environment & Version information
clojure-mode version
Emacs version
Operating system
The text was updated successfully, but these errors were encountered: