Refactor the parsing of data type declarations
authorsimonpj@microsoft.com <unknown>
Tue, 8 Sep 2009 19:23:27 +0000 (19:23 +0000)
committersimonpj@microsoft.com <unknown>
Tue, 8 Sep 2009 19:23:27 +0000 (19:23 +0000)
This is a minor change to the parser that tidies it up a bit,
and allows us to parse

data T :: *
        data S :: * -> *

just like

data T
data S a


No differences found