1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 15:35:14 +03:00
semantic/src/Info.hs

11 lines
287 B
Haskell
Raw Normal View History

2016-03-31 00:12:39 +03:00
module Info where
2016-03-31 00:26:52 +03:00
import Prologue
2016-03-31 00:26:52 +03:00
import Category
import Range
-- | An annotation for a source file, including the source range and semantic
-- | categories.
2016-06-03 06:34:16 +03:00
data Info = Info { characterRange :: !Range, category :: !Category, size :: !Integer, cost :: !Integer }
2016-03-31 00:26:52 +03:00
deriving (Eq, Show)