language-javascript-0.7.1.0: src/Language/JavaScript/Parser/Parser.hs
module Language.JavaScript.Parser.Parser (
-- * Parsing
parse
, parseModule
, readJs
, readJsModule
-- , readJsKeepComments
, parseFile
, parseFileUtf8
-- * Parsing expressions
-- parseExpr
, parseUsing
, showStripped
, showStrippedMaybe
) where
import qualified Language.JavaScript.Parser.Grammar7 as P
import Language.JavaScript.Parser.Lexer
import qualified Language.JavaScript.Parser.AST as AST
import System.IO
-- | Parse JavaScript Program (Script)
-- Parse one compound statement, or a sequence of simple statements.
-- Generally used for interactive input, such as from the command line of an interpreter.
-- Return comments in addition to the parsed statements.
parse :: String -- ^ The input stream (Javascript source code).
-> String -- ^ The name of the Javascript source (filename or input device).
-> Either String AST.JSAST
-- ^ An error or maybe the abstract syntax tree (AST) of zero
-- or more Javascript statements, plus comments.
parse = parseUsing P.parseProgram
-- | Parse JavaScript module
parseModule :: String -- ^ The input stream (JavaScript source code).
-> String -- ^ The name of the JavaScript source (filename or input device).
-> Either String AST.JSAST
-- ^ An error or maybe the abstract syntax tree (AST) of zero
-- or more JavaScript statements, plus comments.
parseModule = parseUsing P.parseModule
readJsWith :: (String -> String -> Either String AST.JSAST)
-> String
-> AST.JSAST
readJsWith f input =
case f input "src" of
Left msg -> error (show msg)
Right p -> p
readJs :: String -> AST.JSAST
readJs = readJsWith parse
readJsModule :: String -> AST.JSAST
readJsModule = readJsWith parseModule
-- | Parse the given file.
-- For UTF-8 support, make sure your locale is set such that
-- "System.IO.localeEncoding" returns "utf8"
parseFile :: FilePath -> IO AST.JSAST
parseFile filename =
do
x <- readFile filename
return $ readJs x
-- | Parse the given file, explicitly setting the encoding to UTF8
-- when reading it
parseFileUtf8 :: FilePath -> IO AST.JSAST
parseFileUtf8 filename =
do
h <- openFile filename ReadMode
hSetEncoding h utf8
x <- hGetContents h
return $ readJs x
showStripped :: AST.JSAST -> String
showStripped = AST.showStripped
showStrippedMaybe :: Show a => Either a AST.JSAST -> String
showStrippedMaybe maybeAst =
case maybeAst of
Left msg -> "Left (" ++ show msg ++ ")"
Right p -> "Right (" ++ AST.showStripped p ++ ")"
-- | Parse one compound statement, or a sequence of simple statements.
-- Generally used for interactive input, such as from the command line of an interpreter.
-- Return comments in addition to the parsed statements.
parseUsing ::
Alex AST.JSAST -- ^ The parser to be used
-> String -- ^ The input stream (Javascript source code).
-> String -- ^ The name of the Javascript source (filename or input device).
-> Either String AST.JSAST
-- ^ An error or maybe the abstract syntax tree (AST) of zero
-- or more Javascript statements, plus comments.
parseUsing p input _srcName = runAlex input p