We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code prints the error Expecting Variable at row 1, col 25 in the console
Expecting Variable at row 1, col 25
type alias NewModel = { aField : SomeType } type SomeType = WithChar Char main : Program Flags NewModel MsgBase main = Monitor.element { init = \_ -> ({ aField = WithChar ' '}, Cmd.none) , view = \_ -> Html.div [] [] , update = \_ model -> (model, Cmd.none) , subscriptions = \_ -> Sub.none }
The output elm-monitor output looks like this [Monitor:init]: { aField = WithChar (' ') }.
[Monitor:init]: { aField = WithChar (' ') }
Edit: I'm using version 0.0.11
The text was updated successfully, but these errors were encountered:
@MartinSStewart Thanks for reporting, you are our QA warrior ;) @ChristophP Can you pls have a look 🙏
Sorry, something went wrong.
No branches or pull requests
The following code prints the error
Expecting Variable at row 1, col 25
in the consoleThe output elm-monitor output looks like this
[Monitor:init]: { aField = WithChar (' ') }
.Edit: I'm using version 0.0.11
The text was updated successfully, but these errors were encountered: