diff options
Diffstat (limited to 'lib/parser.mly')
-rw-r--r-- | lib/parser.mly | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/parser.mly b/lib/parser.mly index e6bcb6d..177daaf 100644 --- a/lib/parser.mly +++ b/lib/parser.mly @@ -17,6 +17,7 @@ %token RBRACE %token EMAIL %token <string> STRING +%token USERNAME %start <ast_table option > prog %% @@ -30,6 +31,7 @@ id_or_other: | UUIDV4 { "uuidv4" } | INCREMENT { "increment" } | EMAIL { "email" } + | USERNAME { "username" } expr: @@ -54,6 +56,9 @@ row: | row_title = id_or_other; EMAIL; COMMA; r = row { Email (row_title, r) } | row_title = id_or_other; EMAIL { Email (row_title, End) } + | row_title = id_or_other; USERNAME; COMMA; r = row { Username (row_title, r) } + | row_title = id_or_other; USERNAME { Username (row_title, End) } + | row_title = id_or_other; INCREMENT; COMMA; r = row { Increment (row_title, r) } | row_title = id_or_other; INCREMENT { Increment (row_title, End) } |