MarcWeber / hasktags

Produces ctags "tags" and etags "TAGS" files for Haskell programs
Other
127 stars 32 forks source link

support existential quantification #70

Open dmwit opened 4 years ago

dmwit commented 4 years ago

The following file is accepted by GHC, defining type X and computation Y:

{-# LANGUAGE ExistentialQuantification #-}
data X = forall a. Y

However, hasktags incorrectly sees this as defining type X and computation forall:

X   test.hs 2
forall  test.hs 2