google / ghc-source-gen

Library for generating Haskell source files and code fragments.
BSD 3-Clause "New" or "Revised" License
91 stars 29 forks source link

funBinds doesn't support infix #78

Closed isovector closed 3 years ago

isovector commented 3 years ago

The fixity of a binding is controlled by the mc_fixity parameter of the HsMatchContext on a Match. ghc-source-gen forces this parameter to be Prefix, but it would be nice to have the option to control this.

isovector commented 3 years ago

This is actually a surprisingly hard thing to work around, since all of the necessary bits to patch are marked in internal modules.