1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

include both inputs in SemanticAST

This commit is contained in:
Ayman Nadeem 2019-10-11 12:48:40 -04:00
parent a11decefcd
commit b2f2340c4c

View File

@ -15,7 +15,8 @@ import Options.Applicative hiding (style)
import Data.Semigroup ((<>)) import Data.Semigroup ((<>))
data SemanticAST = SemanticAST data SemanticAST = SemanticAST
{ sourceFilePath :: Input { sourceFilePath :: Maybe FilePath
, sourceString :: Maybe Prelude.String
, format :: Format , format :: Format
} deriving (Read) } deriving (Read)