brittany/src-literatetests
Phil Hazelden a5a24b4220 Fix imports of type operators.
Previously, we could only import a type operator with no subsequent
list, i.e.

    import Foo ( (:.) )

was fine, but

    import Foo ( (:.)(..) )
    import Foo ( (:.)((:.) )
    import Foo ( (:.)(A, b) )

would all break. Brittany would attempt to output them as

    import Foo ( :.(..) )
    import Foo ( :.((:.) )
    import Foo ( :.(A, b) )

I believe the problem was that although `ieName <$> lie` was returning
an `IEWrappedName` with the same contents as used in `layoutWrapped`,
it had different location annotations; and the parentheses are
apparently saved in the location annotations.
2018-08-10 10:01:11 +01:00
..
10-tests.blt Fix imports of type operators. 2018-08-10 10:01:11 +01:00
14-extensions.blt Fix imports of type operators. 2018-08-10 10:01:11 +01:00
15-regressions.blt Core layouting algo improvement (non-bottom more effective) 2018-07-06 22:41:31 +02:00
16-pending.blt Split up littests input into multiple files 2017-10-02 20:53:56 +02:00
30-tests-context-free.blt Add indentation to import-hiding-paragraph 2018-06-04 18:18:44 +02:00
40-indent-policy-multiple.blt Fix IndentPolicyMultiple for indentAmount>4 2018-05-01 23:21:09 +02:00
Main.hs Change test file name 2018-05-01 21:45:31 +02:00