Matthew Lutze
Matthew Lutze
It seems to me that we could unpack the appropriate file and display it in a temporary pane
From what I understand, we currently allow `par` before tuples and function calls, where the arguments are calculated in parallel. This disagrees with my typical writing style. I prefer to...
fixes #3239. still have to add tests
currently is is set at the import site rather than the instance symbol
I would like something with this signature: ```scala (a -> Option[a], a) -> List[a] ``` Haskell calls a function similar to this `iterate`, but it doesn't use an `Option` so...
fixes #3717, related to #3720 Currently requires the user to be in a Flix project, which I assume is too annoying.
- [ ] move `Resolver.mkXYZ` to `UnkindedType.mkXYZ` - [ ] format UnkindedType - [ ] remove that TODO - [x] rename `formatWellKindedType` to `formatType`
What is the use-case for this? ```scala type alias TA = Map[_, _] enum E { case C(_) } ``` This does not seem meaningful and complicates the typing as...