diff options
| author | Alec Theriault <alec.theriault@gmail.com> | 2020-03-20 20:17:01 -0400 | 
|---|---|---|
| committer | Alec Theriault <alec.theriault@gmail.com> | 2020-03-20 20:17:01 -0400 | 
| commit | 053c9add568dad4264f4629bff0de9b10d9316e1 (patch) | |
| tree | 0e6f4de693a1748fb59df1ef32e5596e6008af0b /haddock-library/fixtures | |
| parent | 70f4b3a03a47b38ee301f0da9c72d5a7ff0ed9b0 (diff) | |
| parent | dae8d9de6aaf3913a3776f1af235fb72404e9970 (diff) | |
Merge branch 'ghc-8.8' into ghc-8.10
Diffstat (limited to 'haddock-library/fixtures')
4 files changed, 47 insertions, 0 deletions
| diff --git a/haddock-library/fixtures/examples/list-blocks1.input b/haddock-library/fixtures/examples/list-blocks1.input new file mode 100644 index 00000000..72a0640b --- /dev/null +++ b/haddock-library/fixtures/examples/list-blocks1.input @@ -0,0 +1,15 @@ +* Something about foo + +    @ +    foo :: a -> b -> c +    foo a b = bar c b +    @ + +* Something about bar + +    @ +    bar :: a -> b -> c +    bar a b = foo b a +    @ + +* And then we continue diff --git a/haddock-library/fixtures/examples/list-blocks1.parsed b/haddock-library/fixtures/examples/list-blocks1.parsed new file mode 100644 index 00000000..9fc4f0ba --- /dev/null +++ b/haddock-library/fixtures/examples/list-blocks1.parsed @@ -0,0 +1,12 @@ +DocUnorderedList +  [DocAppend +     (DocParagraph (DocString "Something about foo")) +     (DocCodeBlock +        (DocString +           (concat ["foo :: a -> b -> c\n", "foo a b = bar c b\n"]))), +   DocAppend +     (DocParagraph (DocString "Something about bar")) +     (DocCodeBlock +        (DocString +           (concat ["bar :: a -> b -> c\n", "bar a b = foo b a\n"]))), +   DocParagraph (DocString "And then we continue")] diff --git a/haddock-library/fixtures/examples/list-blocks2.input b/haddock-library/fixtures/examples/list-blocks2.input new file mode 100644 index 00000000..91492adb --- /dev/null +++ b/haddock-library/fixtures/examples/list-blocks2.input @@ -0,0 +1,10 @@ +=== Title + +* List directly +* after the title + +    @ +    with some inline things +    @ + +* is parsed weirdly diff --git a/haddock-library/fixtures/examples/list-blocks2.parsed b/haddock-library/fixtures/examples/list-blocks2.parsed new file mode 100644 index 00000000..169677b7 --- /dev/null +++ b/haddock-library/fixtures/examples/list-blocks2.parsed @@ -0,0 +1,10 @@ +DocAppend +  (DocAppend +     (DocHeader +        Header {headerLevel = 3, headerTitle = DocString "Title"}) +     (DocUnorderedList +        [DocParagraph (DocString "List directly"), +         DocAppend +           (DocParagraph (DocString "after the title")) +           (DocCodeBlock (DocString "with some inline things\n"))])) +  (DocUnorderedList [DocParagraph (DocString "is parsed weirdly")]) | 
