aboutsummaryrefslogtreecommitdiff
path: root/lib/syntax/tree.ml
diff options
context:
space:
mode:
authorChimrod <>2023-11-04 17:16:16 +0100
committerChimrod <>2023-11-04 17:16:16 +0100
commit6ada3862d96f82e44b3b19dd84d08cbb8c6a6006 (patch)
treee2fa4e223c4ce0f3945af76f9e82e887b307a95b /lib/syntax/tree.ml
parent673da2554d3e667e0a62d5c7bbf30999f1295dc1 (diff)
Allow test to be enabled or disabled by command line
Diffstat (limited to 'lib/syntax/tree.ml')
-rw-r--r--lib/syntax/tree.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/syntax/tree.ml b/lib/syntax/tree.ml
index 8444fd9..6f99bbd 100644
--- a/lib/syntax/tree.ml
+++ b/lib/syntax/tree.ml
@@ -2,6 +2,7 @@ open StdLabels
let identifier = "tree"
let description = "Build the AST"
+let active = ref true
module Ast = struct
type 'a literal = 'a T.literal = Text of string | Expression of 'a list