1
1
mirror of https://github.com/github/semantic.git synced 2024-11-23 16:37:50 +03:00

change AST.Test to AST.TestHelpers

This commit is contained in:
Ayman Nadeem 2020-02-14 11:33:01 -05:00
parent 6c24228187
commit 82a0062f3c
9 changed files with 9 additions and 9 deletions

View File

@ -47,7 +47,7 @@ library
AST.Traversable1
AST.Traversable1.Class
AST.Unmarshal
AST.Test
AST.TestHelpers
-- other-modules:

View File

@ -1,5 +1,5 @@
{-# LANGUAGE OverloadedStrings #-}
module AST.Test
module AST.TestHelpers
( CorpusExample(..)
, readCorpusFiles
, parseCorpusFile

View File

@ -5,7 +5,7 @@ import qualified System.Path as Path
import Test.Tasty
import Language.Go.Grammar
import qualified Language.Go.AST as Go
import AST.Test
import AST.TestHelpers
import AST.Unmarshal
main :: IO ()

View File

@ -5,7 +5,7 @@ import qualified System.Path as Path
import Test.Tasty
import TreeSitter.Java
import qualified TreeSitter.Java.AST as Java
import AST.Test
import AST.TestHelpers
import AST.Unmarshal
main :: IO ()

View File

@ -5,7 +5,7 @@ import qualified System.Path as Path
import Test.Tasty
import TreeSitter.JSON
import qualified TreeSitter.JSON.AST as JSON
import AST.Test
import AST.TestHelpers
import AST.Unmarshal
main :: IO ()

View File

@ -5,7 +5,7 @@ import qualified System.Path as Path
import Test.Tasty
import TreeSitter.Python
import qualified TreeSitter.Python.AST as Py
import AST.Test
import AST.TestHelpers
import AST.Unmarshal
main :: IO ()

View File

@ -5,7 +5,7 @@ import qualified System.Path as Path
import Test.Tasty
import TreeSitter.Ruby
import qualified TreeSitter.Ruby.AST as Rb
import AST.Test
import AST.TestHelpers
import AST.Unmarshal
main :: IO ()

View File

@ -5,7 +5,7 @@ import qualified System.Path as Path
import Test.Tasty
import TreeSitter.TSX
import qualified TreeSitter.TSX.AST as Ts
import AST.Test
import AST.TestHelpers
import AST.Unmarshal
main :: IO ()

View File

@ -5,7 +5,7 @@ import qualified System.Path as Path
import Test.Tasty
import TreeSitter.TypeScript
import qualified TreeSitter.TypeScript.AST as Ts
import AST.Test
import AST.TestHelpers
import AST.Unmarshal
main :: IO ()