ligo/tools/lsp/squirrel/src/HasErrors.hs

11 lines
145 B
Haskell
Raw Normal View History

2020-06-01 22:02:16 +04:00
module HasErrors
( HasErrors(..)
)
where
2020-06-01 18:17:33 +04:00
import Error
2020-06-01 22:02:16 +04:00
-- | Ability to contain `Error`s.
2020-06-01 18:17:33 +04:00
class HasErrors h where
errors :: h -> [Error]