brittany/src-literatetests
Evan Rutledge Borden f1b49b082f Format let and in on a single line if they fit
The following is wasteful of vertical space:

```
_ =
  let
    longIdentifierForShortValue = 1
  in
    longIdentifierForShortValue + longIdentifierForShortValue
```

We should format it on two lines if possible.

```
_ =
  let longIdentifierForShortValue = 1
  in longIdentifierForShortValue + longIdentifierForShortValue
```

This commit also allows for a mix of variations:

```
_ =
  let
    longIdentifierForShortValue = 1
  in longIdentifierForShortValue + longIdentifierForShortValue

_ =
  let longIdentifierForShortValue = 1
  in
    longIdentifierForShortValue + longIdentifierForShortValue
```
2017-12-31 00:04:53 -05:00
..
10-tests.blt add tuple section tests 2017-12-14 18:15:07 -05:00
14-extensions.blt Support RecursiveDo/`rec` keyword 2017-10-24 00:25:59 +02:00
15-regressions.blt Remove space after opening parenthesis (fixes #87) 2017-12-28 20:46:03 +01:00
16-pending.blt Split up littests input into multiple files 2017-10-02 20:53:56 +02:00
Main.hs Add literate tests for context free formatting 2017-11-27 18:12:19 +01:00
tests-context-free.blt Format let and in on a single line if they fit 2017-12-31 00:04:53 -05:00