ligo/tools/lsp/squirrel/src/HasErrors.hs
2020-08-11 12:32:00 +04:00

11 lines
145 B
Haskell

module HasErrors
( HasErrors(..)
)
where
import Error
-- | Ability to contain `Error`s.
class HasErrors h where
errors :: h -> [Error]