From cf73b006faf95512b28c744ecfbdf47c044acb67 Mon Sep 17 00:00:00 2001
From: "Dr. ERDI Gergo"
Date: Fri, 31 Jan 2014 00:15:01 +0800
Subject: <+>: Don't insert a space when concatenating empty nodes
---
html-test/ref/Test.html | 166 ++++++++++++++++++++++++------------------------
1 file changed, 83 insertions(+), 83 deletions(-)
(limited to 'html-test/ref/Test.html')
diff --git a/html-test/ref/Test.html b/html-test/ref/Test.html
index b54b3a05..02146623 100644
--- a/html-test/ref/Test.html
+++ b/html-test/ref/Test.html
@@ -161,7 +161,7 @@ window.onload = function () {pageLoad();setSynopsis("mini_Test.html");};
>data T a b| BInt Float) )data T2 a bdata T3 a b| B1 b bdata T4 a b| B2 b bdata T5 a b| B3 b bdata T6 | B4 | C4 newtype N1 a = N1newtype N2 a b = N2newtype N3 a b = N3data N4 a bnewtype N5 a b = N5newtype N6 a b = N6newtype N7 a b = N7data R - = C1q :: forall a. a -> a
a. a -> a
rdata R1 = = C3 {- D a => C a a where
- class D a a where
- class F a a where
- data Ex a
- | forall b . Ex2 b
b
- | forallC a => Ex3 b
b
- | Ex4 (forall a. a -> a)
a. a -> a)
data T a b
a b
This comment applies to the data T2 a b
a b
An abstract data declaration
data T3 a b
a b
A data declaration with no documentation annotations on the constructors
data T4 a b
a b
Constructors
data T5 a b
a b
Constructors
data T6
Testing alternative comment styles
newtype N1 a
a
A newtype
newtype N2 a b
a b
A newtype with a fieldname
newtype N3 a b
a b
A newtype with a fieldname, documentation on the field
data N4 a b
a b
An abstract newtype - we show this one as data rather than newtype because
@@ -1043,9 +1043,9 @@ window.onload = function () {pageLoad();setSynopsis("mini_Test.html");};
>
newtype N5 a b
a b
Constructors
newtype N6 a b
a b
Constructors
newtype N7 a b
a b
docs on the newtype and the constructor
data R
This is the documentation for the q :: forall a. a -> a a. a -> aThis comment applies to the data R1
Testing different record commenting styles
D a =>
C a
a whereclass D a a where
class E a
a
This is a class declaration with no methods (or no methods exported)
class F a a where
data Ex a
a
A data-type using existential/universal types
Ex4 (
forall a. a -> a) a. a -> a)
|