ghc-source-gen/tests
Judah Jacobson 15df48689e
Parenthesize let-expressions inside of do-expressions. (#38)
The following syntax is not valid, but can be generated by GHC;

```
do let ...
   in ...
```

It's not always a problem, if GHC manages to wrap it like

```
do let ... in ...
```

But for consistency, and since this ought to be an uncommon case,
always wrap `let`s in parentheses when they're inside of a `do` statement.
2019-08-25 10:26:40 -07:00
..
name_test.hs Fix edge cases parsing qualified operators. (#32) 2019-08-18 15:03:45 -07:00
pprint_examples.hs Replace matchRhs/matchRhs with match/matchGRHSs. (#26) 2019-08-17 22:21:24 -07:00
pprint_test.hs Parenthesize let-expressions inside of do-expressions. (#38) 2019-08-25 10:26:40 -07:00