mirror of
https://github.com/github/semantic.git
synced 2024-12-23 23:11:50 +03:00
11 lines
287 B
Haskell
11 lines
287 B
Haskell
module Info where
|
|
|
|
import Prologue
|
|
import Category
|
|
import Range
|
|
|
|
-- | An annotation for a source file, including the source range and semantic
|
|
-- | categories.
|
|
data Info = Info { characterRange :: !Range, category :: !Category, size :: !Integer, cost :: !Integer }
|
|
deriving (Eq, Show)
|