aboutsummaryrefslogtreecommitdiff
path: root/lib/ast_types.ml
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2023-12-26 11:21:59 -0600
committerMarc Coquand <marc@mccd.space>2023-12-26 11:21:59 -0600
commit0dcc905f2fdc89f3be834c670a5bcf42386eb663 (patch)
tree71d960afcb27ffaf3c00994593acb98fbb206c4e /lib/ast_types.ml
parentb826340d7536c2777fdcafb3bfcc6ebc8d8053ee (diff)
downloadfixgen-0dcc905f2fdc89f3be834c670a5bcf42386eb663.tar.gz
fixgen-0dcc905f2fdc89f3be834c670a5bcf42386eb663.tar.bz2
fixgen-0dcc905f2fdc89f3be834c670a5bcf42386eb663.zip
Update docs
Diffstat (limited to 'lib/ast_types.ml')
-rw-r--r--lib/ast_types.ml5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ast_types.ml b/lib/ast_types.ml
index 7638d3b..6996435 100644
--- a/lib/ast_types.ml
+++ b/lib/ast_types.ml
@@ -13,11 +13,12 @@ type ast_row =
[@@deriving show, eq]
type ast_table =
+(** In hindsight, this could've been represented as a list of tables instead using separated list command
+
+ TODO: Rewrite this to use a list of tables instead of a tree *)
| Table of string * int * ast_row * ast_table
| End
[@@deriving show, eq]
-(** In hindsight, this could've been represented as a list of tables instead using separated list command
- TODO: Rewrite this to use a list of tables instead of a tree *)
let rec print_row = function
| Uuidv4 (s, r) ->