ligo/tools/lsp/squirrel/src/AST.hs
Anton Myasnikov a1a846b554
[LIGO-25] Add ReasonLIGO parser
Problem: With generated ReasonLIGO grammar we need to develop its
parser as well. With it we also need to restructure AST a bit
and add expressions that are used for ReasonLIGO specifically.

Solution: Add ReasonLIGO parser and some dummy examples of its
usage, adapt AST to it, rename LIGO to AST.
2020-08-11 13:33:26 +03:00

8 lines
158 B
Haskell

-- | The "all things AST"-module.
module AST (module M) where
import AST.Completion as M
import AST.Find as M
import AST.Scope as M
import AST.Skeleton as M