a1a846b554
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.
8 lines
158 B
Haskell
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
|