compiler
compiler copied to clipboard
Compiler for Elm, a functional language for reliable webapps.
Add documentation note that if type is package, then source directories is ["src"].
**Quick Summary:** When I start a project, I want to know if `elm init` will create my project in that folder, or a subfolder. That information is not readily available....
https://github.com/elm/compiler/blob/770071accf791e8171440709effe71e78a9ab37c/compiler/src/Reporting/Error/Syntax.hs#L5081 >Only the :: symbol that works in patterns. It is useful if you are pattern matching on lists, trying to get the first element off the front. Did you...
**Quick Summary:** The following incorrect code causes the compiler to hang forever and grab more and more memory. ## SSCCE ```elm module CompilerError exposing (..) type Thing b = Thing...
**Quick Summary:** ??? Elm 0.19.1 limits the tuple size to 3, which is too small. I understand that the limitation is to help to increase the readability of the code....
**Quick Summary:** When using the `extensible record` syntax to avoid duplicate fields in similiar data types, I crash the compiler when trying to convert between the similir types. The error...
**Quick Summary:** Unexpected elm: Map.!: given key is not an element in the map ## SSCCE ```elm $ elm repl ---- Elm 0.19.1 ---------------------------------------------------------------- Say :help for help and :exit...
**Quick Summary:** While trying to compile **invalid** code (but the sort one might reasonably generate on accident, since I did while eliminating a parameter from a function), compiler crashes with...
**Quick Summary:** While trying to compile valid code with a wrapped phantom type and incomplete type signatures, compiler crashes with the following error (boilerplate parts excluded): ``` Compiling ...elm: You...
It looks that the old issue https://github.com/elm/compiler/issues/961 is closed, and we are not able to emit JS to stdout, so I'm creating new issue?