compiler icon indicating copy to clipboard operation
compiler copied to clipboard

Compiler for Elm, a functional language for reliable webapps.

Results 173 compiler issues
Sort by recently updated
recently updated
newest added

**Quick Summary:** The compiler outputs pages of whitespace in the middle of reporting a name clash error ## SSCCE ### Source ```elm type T = T Int break : T...

bug
canonicalization

**Quick Summary:** ??? `elm publish` errors without an error message when using `zsh` on MacOS. When using bash the error message is printed. ## SSCCE using zsh 5.9 (x86_64-apple-darwin23.0) ```sh...

Fixes the warning about inconsistent indentation in the package. ``` $ cabal check ... Warning: elm.cabal:42:5: Inconsistent indentation. Indentation jumps at lines 42 ... ``` Found when adding `elm-compiler` as...

**Quick Summary:** When I try to build elm with cabal-install on Linux I run into: ``` terminal/src/Develop/StaticFiles.hs:91:3: error: • Exception when trying to run compile-time code: reactor: changeWorkingDirectory: does not...

**Quick Summary:** The error message when an integer literal is being used as both integer and float doesn't point out the root cause. ## SSCCE ### Source ```elm bug :...

**Quick Summary:** s/reccomend/recommend

### Description When running the Elm compiler without the `ELM_HOME` environment variable set, it defaults to using the the location of elm im assuming for storing data. In certain environments,...

**Quick Summary:** I got a very confusing error when I applied an extensible record to a unit type. Obviously this is wrong, but better compiler info about where the error...

Using binary websockets and handle the messages in Elm currently means encoding/decoding to/from strings to get the data through ports. The lamdera compiler already provides this feature, making things more...

In this example of correct elm code ```elm type alias Base other = { other | base : () } type alias Specific other = Base { other | extra...