module TreeSitter.Java
( tree_sitter_java
, getNodeTypesPath
, getTestCorpusDir
) where

import Foreign.Ptr
import TreeSitter.Language
import Paths_tree_sitter_java

foreign import ccall unsafe "vendor/tree-sitter-java/src/parser.c tree_sitter_java" tree_sitter_java :: Ptr Language

getNodeTypesPath :: IO FilePath
getNodeTypesPath :: IO FilePath
getNodeTypesPath = FilePath -> IO FilePath
getDataFileName FilePath
"vendor/tree-sitter-java/src/node-types.json"

getTestCorpusDir :: IO FilePath
getTestCorpusDir :: IO FilePath
getTestCorpusDir = FilePath -> IO FilePath
getDataFileName FilePath
"vendor/tree-sitter-java/corpus"