aboutsummaryrefslogtreecommitdiff
path: root/html-test/ref/Operators.html
Commit message (Collapse)AuthorAgeFilesLines
* Update tests to follow HTML changesMateusz Kowalczyk2015-08-021-22/+22
|
* Update test filesMateusz Kowalczyk2015-01-221-8/+8
| | | | | | | | | | | | | | | Test: a correct behaviour for fields comma-separating values. I'm surprised we had no bug open for this. Maybe it affects how #301 renders now but I doubt. Operators: Seems GHC is giving us a new order for operators, something must have changed on their side again. cc @haasn , this makes the fixity to the side not match the order on the LHS which is a bit unpleasant. Maybe the fixity can be made to match the GHC order? Bug335: We expand examples by default now. Bug310: Now inferred safe.
* support GHC 7.10: no Safe-Inferred, Foldable instancejpmoresmau2015-01-221-1/+1
|
* For pattern synonyms, render "pattern" as a keywordDr. ERDI Gergo2014-12-121-2/+6
|
* Update Haddock to new pattern synonym type signature syntaxDr. ERDI Gergo2014-12-121-2/+2
| | | | | | Conflicts: haddock-api/src/Haddock/Backends/Xhtml/Decl.hs haddock-api/src/Haddock/Convert.hs
* Fix extra whitespace on signatures and update all test casesNiklas Haas2014-08-241-7/+7
| | | | | This was long overdue, now running ./accept.lhs on a clean test from master will not generate a bunch of changes.
* Stop testing #188.Mateusz Kowalczyk2014-08-151-8/+8
| | | | | | Because the change is in GHC 7.9 and we now work against 7.8.3, this test no longer makes sense. We revert it until 7.10 becomes the standard version. If anything, there should be a test for this in GHC itself.
* Update test cases for GHC bug #8945, Haddock #188Mateusz Kowalczyk2014-04-031-7/+7
| | | | | | | The order of signature groups has been corrected upstream. Here we add a test case and update some existing test-cases to reflect this change. We remove grouped signature in test cases that we can (Minimal, BugDeprecated &c) so that the test is as self-contained as possible.
* Strip links from recently added html testsNiklas Haas2014-03-131-36/+36
| | | | These were accidentally left there when the tests were originally added
* Bump version to 2.15.0Mateusz Kowalczyk2014-03-111-1/+1
|
* Update appearance of fixity annotationsNiklas Haas2014-03-111-43/+90
| | | | | | | This moves them in-line with their corresponding lines, similar to a presentation envision by @hvr and described in #ghc. Redundant operator names are also omitted when no ambiguity is present.
* Group similar fixities togetherNiklas Haas2014-03-091-1/+32
| | | | | Identical fixities declared for the same line should now render using syntax like: infix 4 <, >=, >, <=
* Render fixity informationNiklas Haas2014-03-081-0/+379
Affects functions, type synonyms, type families, class names, data type names, constructors, data families, associated TFs/DFs, type synonyms, pattern synonyms and everything else I could think of.