deadfoxygrandpa / Elm.tmLanguage

Elm language syntax highlighting and tool integration for ST2/3
https://packagecontrol.io/packages/Elm%20Language%20Support
MIT License
122 stars 27 forks source link

Build errors from core? #92

Closed OliverJAsh closed 8 years ago

OliverJAsh commented 8 years ago

When I run Build With: Elm Make, the following errors appear in my Sublime console. These errors appear to be inside of Elm core. My app runs fine through elm-reactor. Am I doing something wrong?

==== error in elm-stuff/packages/elm-lang/core/3.0.0/src/Graphics/Element.elm:143:43: ====
I ran into something unexpected when parsing your code!
I am looking for one of the following things:
    a closing bracket '}'
    a field access like .name
    an expression
    an infix operator like (+)
    more letters in this name
    whitespace
----
==== error in elm-stuff/packages/elm-lang/core/3.0.0/src/Random.elm:101:9: ====
The 1st argument to function `Seed` has an unexpected type.
As I infer the type of values flowing through your program, I see a conflict
between these two types:
    { next : State -> (Int, State)
    , range : State -> (Int, Int)
    , split : State -> (State, State)
    , state : State
    }
    { next : State -> (Int, State)
    , range : State -> (Int, Int)
    , split : State -> (State, State)
    , state : State
    , state : State
    }
----
[Finished in 0.4s with exit code 1]
OliverJAsh commented 8 years ago

Cleared out elm-stuff and it worked!