diff options
Diffstat (limited to 'lib/syntax/tree.ml')
-rw-r--r-- | lib/syntax/tree.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/syntax/tree.ml b/lib/syntax/tree.ml index e70b66a..8444fd9 100644 --- a/lib/syntax/tree.ml +++ b/lib/syntax/tree.ml @@ -1,5 +1,8 @@ open StdLabels +let identifier = "tree" +let description = "Build the AST" + module Ast = struct type 'a literal = 'a T.literal = Text of string | Expression of 'a list [@@deriving eq, show] |