Print pure elm-syntax declarations as
grain code.
import Elm.Parser
import ElmSyntaxToGrain
"""module Sample exposing (..)
plus2 : Int -> Int
plus2 n =
n + ([ 2 ] |> List.sum)
"""
|> Elm.Parser.parseToFile
|> Result.mapError (\_ -> "failed to parse elm source code")
|> Result.map
(\syntaxModule ->
[ syntaxModule ]
|> ElmSyntaxToGrain.modules
|> .declarations
|> ElmSyntaxToGrain.grainDeclarationsToModuleString
)
-->
Ok """module Elm
..some default declarations..
provide let sample_plus2 : (Number) => Number =
(n) => basics_add(n, list_sum([ 2 ]))
"""To try it out, you can run this node script.
- only a subset of elm is currently supported. not supported:
elm/regex,elm/file,elm/bytes,elm/http,elm/random,elm/url,elm/json,elm/parser,elm/virtual-dom,elm/html,elm/svg,elm/browser,elm/time,elm-explorations/markdown,elm-explorations/webgl,elm-explorations/benchmark,elm-explorations/linear-algebraPlatform,Platform.Cmd,Platform.Sub,Task,Process- ports, glsl, currying, the prefix operator functions
(>>)and(<<) - potential future candidates:
Basics.(<<),Basics.(>>),Basics.clamp,Basics.degrees,Basics.turns,Basics.radians,Basics.logBase,Basics.toPolar,Basics.fromPolar,Basics.never,List.map5,List.map4,Char.toLocaleLower,Char.toLocaleUpper,Char.isAlpha,Char.isAlphaNum,Char.isDigit,Char.isOctDigit,String.split,String.contains,List.partition,List.map3/4/5,List.sortBy,Bitwise.shiftRightZfBy,Array. Any help appreciated!
- no checks are performed before transpiling to grain. So if you don't add a compile check of your elm input, you might e.g. get a running program that circumvents an elm opaque type or phantom type, or a grain program that can't be run
- not much care has been put into making the resulting code readable or even conventionally formatted and comments are not preserved
Please report any issues you notice <3
- it runs fast and has exceptional support for Wasm
- it's pretty much a superset of elm which makes transpiling easy
Honestly, it's a match made in heaven. I've fought against too slim standard libraries, type checking anonymous records and parsing inconsistencies in all other languages but grain had none of these problems!
- I was struggling a lot with correctly ordering (mutually recursive) lets and guida-lang/graph: Data.Graph.stronglyConnComp singlehandedly solved it :)