1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 01:47:01 +03:00

Diff things.

This commit is contained in:
Rob Rix 2015-11-27 12:22:05 -05:00
parent defce6edbf
commit acfb27ba9b

View File

@ -1,6 +1,8 @@
module Main where
import Categorizable
import Diff
import Interpreter
import Patch
import Term
import Syntax
@ -52,7 +54,7 @@ main = do
let (a, b) = files args in do
a' <- parseTreeSitterFile a
b' <- parseTreeSitterFile b
return (a', b')
return $ interpret comparable a' b'
return ()
parseTreeSitterFile :: FilePath -> IO (Term String Info)