goldfirere / th-desugar

Desugars Template Haskell abstract syntax to a simpler format without changing semantics
BSD 3-Clause "New" or "Revised" License
20 stars 13 forks source link

Add a `Quote` instance for `DsM` #226

Closed RyanGlScott closed 4 months ago

RyanGlScott commented 4 months ago

To ensure that this instance will work on pre-9.0 versions of GHC, we import the Quote class from the th-compat package, which backports Quote to old GHCs.

Fixes #225.