aboutsummaryrefslogtreecommitdiff
path: root/lib/parser.mly
blob: f2f53fdc5f53b90f136eb699c3e27261716d4a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
%{
  open Ast_types
%}
%token COMMA
%token <string> IDENTIFIER
%token UUIDV4
%token NEWLINE
%token NAME
%token COLON
%token DOT
%token EOF
%start <ast_table option > prog 
%% 

prog: 
  | e = expr; EOF { Some e }
  ;

expr:
  | tbl = IDENTIFIER; COLON; r = row; NEWLINE; e = expr { Table (tbl,r, e) }
  | tbl = IDENTIFIER; COLON; r = row { Table (tbl,r, End) }
  ;

row: 
  | row_title = IDENTIFIER; parent = IDENTIFIER; DOT; parent_id = IDENTIFIER; COMMA; r = row { Foreign (parent,parent_id,row_title, r) }
  | row_title = IDENTIFIER; parent = IDENTIFIER; DOT; parent_id = IDENTIFIER; { Foreign (parent,parent_id,row_title, End) }
  | row_title = IDENTIFIER; UUIDV4; COMMA; r = row { Uuidv4 (row_title, r) }
  | row_title = IDENTIFIER; UUIDV4 { Uuidv4 (row_title, End) }
  | row_title = IDENTIFIER; NAME; COMMA; r = row { Name (row_title, r) }
  | row_title = IDENTIFIER; NAME { Name (row_title, End) }
  ;