{-# LANGUAGE DisambiguateRecordFields, OverloadedStrings, TypeApplications #-} module Main (main) where import AST.Test import AST.Unmarshal import qualified Language.Go.AST as Go import Language.Go.Grammar import qualified System.Path as Path import Test.Tasty main :: IO () main = Path.absDir <$> Go.getTestCorpusDir >>= readCorpusFiles' >>= traverse (testCorpus parse) >>= defaultMain . tests where parse = parseByteString @Go.SourceFile @() tree_sitter_go tests :: [TestTree] -> TestTree tests = testGroup "tree-sitter-go corpus tests"