Open lue-bird opened 3 years ago
I left this out since custom operators was removed in 0.19. Do you need it? To generate code for 0.18 or some other reason?
I do not expose custom infix operators from a generated module, but I want to import infix operators from Parser
, Parser.Advanced
and Url.Parser
like (|=)
and (<?>)
.
Good point, it should be exposed then.
The current alternative is
Elm.Syntax.InfixExpose
. Are there plans to doinfixExpose : BinOp -> TopLevelExpose
? (all infix operators would then be inElm.CodeGen
.(|.)
,(</>
, etc.)