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

As an additional example for #1625, there has been another potential module name conflict found between `gampleman/elm-visualization` (which has a [`Force`](https://package.elm-lang.org/packages/gampleman/elm-visualization/latest/Force) module for doing force-based particle simulation) and `ianmackenzie/elm-units` (which...

**Quick Summary:** My application doesn't work on Google Chrome when I run with the debugger. The application does not respond to keystrokes, and I see this error message in the...

**Quick Summary:** Some IDEs support navigating to a file by ctrl+clicking file paths that show up in the terminal. You can also end up in the right place in the...

**Quick Summary:** Fix function name reference in syntax error message. ## SSCCE ```elm if ```

I'm debugging an Elm app and the debugger is very useful generally but it doesn't show me the `Cmd`s that happen between messages. I think it would make things a...

**Quick Summary:** A type alias with a constrained type variable—like `number`, `appendable`, etc.—can have that variable bound to concrete type which violates the constraint, when used in an annotation. The...

First of all, thank you Evan for Elm, it's great and it brings me new joy to programming in my life and with my company and colleges !! **Quick Summary:**...

This seems to be a... Parser / code gen problem SSCCE (with core and html libraries) ```language=elm import Html exposing (Html, text) main : Html msg main = text (toString...

bug
parsing

**Quick Summary:** Refine the sentence structure regarding 600 to 1000 LOC. ## SSCCE ```elm ``` - **Elm:** ??? - **Browser:** ??? - **Operating System:** ??? ## Additional Details ???

**Quick Summary:** I've been playing with continuation passing styled functions and stumbled upon the code, that seems to confuse the compiler. Here is the code: ```elm g : Int ->...