1
1
mirror of https://github.com/github/semantic.git synced 2025-01-07 07:58:12 +03:00

Expose SourceSpan/SourcePos from Info

This commit is contained in:
joshvera 2016-10-05 17:40:49 -04:00
parent 7ba5607cc8
commit 224aba6c1f

View File

@ -1,10 +1,11 @@
{-# LANGUAGE DataKinds, GeneralizedNewtypeDeriving #-}
module Info (Range(..), characterRange, setCharacterRange, Category(..), category, setCategory, Cost(..), cost, setCost) where
module Info (Range(..), characterRange, setCharacterRange, Category(..), category, setCategory, Cost(..), cost, setCost, SourceSpan(..), SourcePos(..)) where
import Data.Record
import Prologue
import Category
import Range
import SourceSpan
import Test.QuickCheck
newtype Cost = Cost { unCost :: Int }