1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 05:41:54 +03:00
semantic/semantic-ast/src/CLI.hs

19 lines
512 B
Haskell
Raw Normal View History

2019-10-01 18:25:14 +03:00
{-# LANGUAGE ApplicativeDo #-}
2019-10-02 00:01:50 +03:00
{-# LANGUAGE TypeApplications #-}
2019-10-02 00:02:08 +03:00
module CLI (main) where
2019-10-01 18:25:14 +03:00
2019-10-02 00:03:02 +03:00
import System.Environment
2019-10-02 00:03:37 +03:00
import TreeSitter.Unmarshal
import TreeSitter.Python.AST
import TreeSitter.Python
2019-10-02 00:03:18 +03:00
import Source.Range
import Source.Span
2019-10-02 01:35:50 +03:00
import Data.ByteString (readFile, ByteString)
2019-10-02 01:36:00 +03:00
import System.IO (FilePath)
2019-10-01 18:25:14 +03:00
2019-10-02 01:36:35 +03:00
main :: IO ()
2019-10-01 18:25:14 +03:00
main = do
2019-10-02 21:34:41 +03:00
args <- head <$> getArgs
bytestring <- Data.ByteString.readFile args
2019-10-02 01:38:36 +03:00
print =<< parseByteString @TreeSitter.Python.AST.Module @(Range, Span) tree_sitter_python bytestring