ghc-source-gen/tests
Judah Jacobson 766dbae97c
Add kindedVar and take type parameters as HsTyVarBndr'. (#61)
Previously functions like `class'` and `data'` took their
type variables as `OccNameStr` which let them be passed
as overloaded strings; for example, `data' "Maybe" ["a"] ...`.
Now, they take them as `HsTyVarBndr'`, the same as `forall'`,
and can be constructed with, for example,
`data' "Maybe" [bvar "a"] ...`.

This approach lets them be constructed with either `bvar` (for regular
variables) or `kindedVar` (for kind signatures).

Original patch by ersran9@.
2020-02-03 08:23:30 -08:00
..
GhcVersion.hs Make tyPromotedVar pretty-print as 'Abc not Abc. (#44) 2019-08-30 21:32:01 -07:00
name_test.hs Add occNameToStr and nameToStr to convert from the GHC types. (#54) 2019-09-02 23:18:06 -07:00
pprint_examples.hs Add kindedVar and take type parameters as HsTyVarBndr'. (#61) 2020-02-03 08:23:30 -08:00
pprint_test.hs Add kindedVar and take type parameters as HsTyVarBndr'. (#61) 2020-02-03 08:23:30 -08:00