elben/neblen

Extract literal types into TLit

Closed this issue · 0 comments

elben commented

Instead of:

data Type = TInt
          | TBool
          | TString
          ...

Use:

data TLit = TInt | TBool | TString

data Type = TLit | ...