ClojureDart
ClojureDart copied to clipboard
Clojure dialect for Flutter and Dart
This prevents from running `dart test -p node` (or any js target) because `cljd.test` uses `print`. Possibilities: * platform flags (#128) * root value built on top of `dart:print` (would...
Add some example and maybe some tips on how to use Flutter Dev Tools since most part of the users on ClojureDart are not Dart/Flutter native folks.
Better error messages are needed for circular dependencies in the ‘cljd’ namespace. The current error message doesn’t provide enough information to locate the problem. ``` (ns app.a (:require ["dart:core" :refer...
See #177 or https://clojurians.slack.com/archives/C03A6GE8D32/p1676766935857169 Even if `deferecord` was involved in both cases it can happen with any incompatible classes combination. If we could catch it at the ClojureDart level rather...
I'd like to expose extensions as regular functions, I don't like pretending they are member of classes.
`end is neither a constructor nor a static member of Alignment` should list available constructors and static members
CI has been failing for days despite tests passing locally. 1/ Fix CI 2/ if possible add some basic monitoring of compiled dart files (LOC, number of ifs (maybe with...
`test` is currently special-cased, we need to generalize its mechanism to allow for more output dirs like required by integration_test https://docs.flutter.dev/testing/integration-tests
When extending a class with deftype, one of deftype fields (the ones specified in the vector right after the type name) may conflict with a property or a method of...