Implemented Basic Parser

This commit is contained in:
2024-11-14 14:05:47 -05:00
parent 923da9e747
commit aa48976e31
7 changed files with 363 additions and 3 deletions

View File

@ -63,7 +63,11 @@ executable windows12
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
other-modules:
Windows12
Windows12.Ast
Windows12.Lexer
Windows12.Parser
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
@ -72,7 +76,9 @@ executable windows12
build-depends:
base >= 4.15.1 && < 4.16,
llvm-hs-pure >= 9.0.0 && < 9.1,
megaparsec >= 9.6.1 && < 9.7,
text >= 1.2.5 && < 1.3,
parser-combinators >= 1.3.0 && < 1.4,
-- Directories containing source files.
hs-source-dirs: src