diff options
author | Chimrod <> | 2023-11-04 11:54:08 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-04 11:54:08 +0100 |
commit | 673da2554d3e667e0a62d5c7bbf30999f1295dc1 (patch) | |
tree | 6fe7b79a4d70d31c6c405f6a943196a1b857dfdd /lib/syntax/tree.ml | |
parent | 0f24d6d6c6a61c9a3f090649003df7daabff4d65 (diff) |
List all the available tests on command line
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] |