statsailr 0.7.4 → 0.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/README.md +1 -1
 - data/lib/statsailr/block_builder/sts_block.rb +106 -4
 - data/lib/statsailr/block_builder/sts_block_parse_proc_opts.rb +14 -8
 - data/lib/statsailr/block_to_r/sts_lazy_func_gen.rb +44 -0
 - data/lib/statsailr/parser/sts_parse.output +397 -264
 - data/lib/statsailr/parser/sts_parse.ry +19 -7
 - data/lib/statsailr/parser/sts_parse.tab.rb +269 -145
 - data/lib/statsailr/scanner/sts_scanner.rb +30 -51
 - data/lib/statsailr/version.rb +1 -1
 - metadata +2 -2
 
| 
         @@ -1,4 +1,4 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            state 11 contains  
     | 
| 
      
 1 
     | 
    
         
            +
            state 11 contains 4 shift/reduce conflicts
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            -------- Grammar --------
         
     | 
| 
         @@ -30,114 +30,126 @@ rule 24 key_or_kv: kv 
     | 
|
| 
       30 
30 
     | 
    
         
             
            rule 25 key: IDENT
         
     | 
| 
       31 
31 
     | 
    
         
             
            rule 26 kv: IDENT ASSIGN opt_primary
         
     | 
| 
       32 
32 
     | 
    
         
             
            rule 27 opt_primary: NUMBER
         
     | 
| 
       33 
     | 
    
         
            -
            rule 28 opt_primary:  
     | 
| 
       34 
     | 
    
         
            -
            rule 29 opt_primary:  
     | 
| 
       35 
     | 
    
         
            -
            rule 30  
     | 
| 
       36 
     | 
    
         
            -
            rule 31 proc_stmts: proc_stmt
         
     | 
| 
       37 
     | 
    
         
            -
            rule 32  
     | 
| 
       38 
     | 
    
         
            -
            rule 33  
     | 
| 
       39 
     | 
    
         
            -
            rule 34 optional_proc_stmt_options:  
     | 
| 
       40 
     | 
    
         
            -
            rule 35  
     | 
| 
       41 
     | 
    
         
            -
            rule 36 proc_stmt_options: proc_primary
         
     | 
| 
       42 
     | 
    
         
            -
            rule 37  
     | 
| 
       43 
     | 
    
         
            -
            rule 38 proc_primary:  
     | 
| 
       44 
     | 
    
         
            -
            rule 39 proc_primary:  
     | 
| 
       45 
     | 
    
         
            -
            rule 40 proc_primary:  
     | 
| 
       46 
     | 
    
         
            -
            rule 41 proc_primary:  
     | 
| 
       47 
     | 
    
         
            -
            rule 42 proc_primary:  
     | 
| 
       48 
     | 
    
         
            -
            rule 43 proc_primary:  
     | 
| 
       49 
     | 
    
         
            -
            rule 44 proc_primary:  
     | 
| 
       50 
     | 
    
         
            -
            rule 45 proc_primary:  
     | 
| 
       51 
     | 
    
         
            -
            rule 46 proc_primary:  
     | 
| 
       52 
     | 
    
         
            -
            rule 47 proc_primary:  
     | 
| 
       53 
     | 
    
         
            -
            rule 48 proc_primary:  
     | 
| 
       54 
     | 
    
         
            -
            rule 49 proc_primary:  
     | 
| 
       55 
     | 
    
         
            -
            rule 50 proc_primary:  
     | 
| 
       56 
     | 
    
         
            -
            rule 51 proc_primary:  
     | 
| 
       57 
     | 
    
         
            -
            rule 52 proc_primary:  
     | 
| 
       58 
     | 
    
         
            -
            rule 53 proc_primary:  
     | 
| 
       59 
     | 
    
         
            -
            rule 54 proc_primary:  
     | 
| 
       60 
     | 
    
         
            -
            rule 55  
     | 
| 
       61 
     | 
    
         
            -
            rule 56  
     | 
| 
       62 
     | 
    
         
            -
            rule 57  
     | 
| 
       63 
     | 
    
         
            -
            rule 58  
     | 
| 
      
 33 
     | 
    
         
            +
            rule 28 opt_primary: SQ_STRING
         
     | 
| 
      
 34 
     | 
    
         
            +
            rule 29 opt_primary: DQ_STRING
         
     | 
| 
      
 35 
     | 
    
         
            +
            rule 30 opt_primary: IDENT
         
     | 
| 
      
 36 
     | 
    
         
            +
            rule 31 proc_stmts: proc_stmts TERMIN proc_stmt
         
     | 
| 
      
 37 
     | 
    
         
            +
            rule 32 proc_stmts: proc_stmt
         
     | 
| 
      
 38 
     | 
    
         
            +
            rule 33 proc_stmt: PROC_INST optional_proc_stmt_options
         
     | 
| 
      
 39 
     | 
    
         
            +
            rule 34 optional_proc_stmt_options: 
         
     | 
| 
      
 40 
     | 
    
         
            +
            rule 35 optional_proc_stmt_options: proc_stmt_options
         
     | 
| 
      
 41 
     | 
    
         
            +
            rule 36 proc_stmt_options: proc_stmt_options proc_primary
         
     | 
| 
      
 42 
     | 
    
         
            +
            rule 37 proc_stmt_options: proc_primary
         
     | 
| 
      
 43 
     | 
    
         
            +
            rule 38 proc_primary: IDENT
         
     | 
| 
      
 44 
     | 
    
         
            +
            rule 39 proc_primary: NUMBER
         
     | 
| 
      
 45 
     | 
    
         
            +
            rule 40 proc_primary: SQ_STRING
         
     | 
| 
      
 46 
     | 
    
         
            +
            rule 41 proc_primary: DQ_STRING
         
     | 
| 
      
 47 
     | 
    
         
            +
            rule 42 proc_primary: P_EQ
         
     | 
| 
      
 48 
     | 
    
         
            +
            rule 43 proc_primary: P_DEQ
         
     | 
| 
      
 49 
     | 
    
         
            +
            rule 44 proc_primary: P_MULT
         
     | 
| 
      
 50 
     | 
    
         
            +
            rule 45 proc_primary: P_PLUS
         
     | 
| 
      
 51 
     | 
    
         
            +
            rule 46 proc_primary: P_MINUS
         
     | 
| 
      
 52 
     | 
    
         
            +
            rule 47 proc_primary: P_INTDEV
         
     | 
| 
      
 53 
     | 
    
         
            +
            rule 48 proc_primary: P_MOD
         
     | 
| 
      
 54 
     | 
    
         
            +
            rule 49 proc_primary: P_IN
         
     | 
| 
      
 55 
     | 
    
         
            +
            rule 50 proc_primary: P_AND
         
     | 
| 
      
 56 
     | 
    
         
            +
            rule 51 proc_primary: P_OR
         
     | 
| 
      
 57 
     | 
    
         
            +
            rule 52 proc_primary: P_DAND
         
     | 
| 
      
 58 
     | 
    
         
            +
            rule 53 proc_primary: P_DOR
         
     | 
| 
      
 59 
     | 
    
         
            +
            rule 54 proc_primary: P_LT
         
     | 
| 
      
 60 
     | 
    
         
            +
            rule 55 proc_primary: P_ST
         
     | 
| 
      
 61 
     | 
    
         
            +
            rule 56 proc_primary: P_LTE
         
     | 
| 
      
 62 
     | 
    
         
            +
            rule 57 proc_primary: P_STE
         
     | 
| 
      
 63 
     | 
    
         
            +
            rule 58 proc_primary: P_HAT
         
     | 
| 
      
 64 
     | 
    
         
            +
            rule 59 proc_primary: P_TILDE
         
     | 
| 
      
 65 
     | 
    
         
            +
            rule 60 proc_primary: P_COLON
         
     | 
| 
      
 66 
     | 
    
         
            +
            rule 61 proc_primary: P_LPAR
         
     | 
| 
      
 67 
     | 
    
         
            +
            rule 62 proc_primary: P_RPAR
         
     | 
| 
      
 68 
     | 
    
         
            +
            rule 63 proc_primary: P_LSQBR
         
     | 
| 
      
 69 
     | 
    
         
            +
            rule 64 proc_primary: P_RSQBR
         
     | 
| 
      
 70 
     | 
    
         
            +
            rule 65 proc_primary: P_COMMA
         
     | 
| 
      
 71 
     | 
    
         
            +
            rule 66 proc_primary: P_SLASH
         
     | 
| 
      
 72 
     | 
    
         
            +
            rule 67 opt_termins: 
         
     | 
| 
      
 73 
     | 
    
         
            +
            rule 68 opt_termins: termins
         
     | 
| 
      
 74 
     | 
    
         
            +
            rule 69 termins: termins TERMIN
         
     | 
| 
      
 75 
     | 
    
         
            +
            rule 70 termins: TERMIN
         
     | 
| 
       64 
76 
     | 
    
         | 
| 
       65 
77 
     | 
    
         
             
            ------- Symbols -------
         
     | 
| 
       66 
78 
     | 
    
         | 
| 
       67 
79 
     | 
    
         
             
            **Nonterminals, with rules where they appear
         
     | 
| 
       68 
80 
     | 
    
         | 
| 
       69 
     | 
    
         
            -
              $start ( 
     | 
| 
      
 81 
     | 
    
         
            +
              $start (42)
         
     | 
| 
       70 
82 
     | 
    
         
             
                on right: 
         
     | 
| 
       71 
83 
     | 
    
         
             
                on left : 
         
     | 
| 
       72 
     | 
    
         
            -
              program ( 
     | 
| 
      
 84 
     | 
    
         
            +
              program (43)
         
     | 
| 
       73 
85 
     | 
    
         
             
                on right: 
         
     | 
| 
       74 
86 
     | 
    
         
             
                on left : 1
         
     | 
| 
       75 
     | 
    
         
            -
              opt_termins ( 
     | 
| 
      
 87 
     | 
    
         
            +
              opt_termins (44)
         
     | 
| 
       76 
88 
     | 
    
         
             
                on right: 1
         
     | 
| 
       77 
     | 
    
         
            -
                on left :  
     | 
| 
       78 
     | 
    
         
            -
              blocks ( 
     | 
| 
      
 89 
     | 
    
         
            +
                on left : 67 68
         
     | 
| 
      
 90 
     | 
    
         
            +
              blocks (45)
         
     | 
| 
       79 
91 
     | 
    
         
             
                on right: 1 2
         
     | 
| 
       80 
92 
     | 
    
         
             
                on left : 2 3
         
     | 
| 
       81 
     | 
    
         
            -
              block ( 
     | 
| 
      
 93 
     | 
    
         
            +
              block (46)
         
     | 
| 
       82 
94 
     | 
    
         
             
                on right: 2 3
         
     | 
| 
       83 
95 
     | 
    
         
             
                on left : 4 5 6
         
     | 
| 
       84 
     | 
    
         
            -
              top_stmt ( 
     | 
| 
      
 96 
     | 
    
         
            +
              top_stmt (47)
         
     | 
| 
       85 
97 
     | 
    
         
             
                on right: 4
         
     | 
| 
       86 
98 
     | 
    
         
             
                on left : 7
         
     | 
| 
       87 
     | 
    
         
            -
              data_block ( 
     | 
| 
      
 99 
     | 
    
         
            +
              data_block (48)
         
     | 
| 
       88 
100 
     | 
    
         
             
                on right: 5
         
     | 
| 
       89 
101 
     | 
    
         
             
                on left : 8
         
     | 
| 
       90 
     | 
    
         
            -
              proc_block ( 
     | 
| 
      
 102 
     | 
    
         
            +
              proc_block (49)
         
     | 
| 
       91 
103 
     | 
    
         
             
                on right: 6
         
     | 
| 
       92 
104 
     | 
    
         
             
                on left : 9
         
     | 
| 
       93 
     | 
    
         
            -
              top_options ( 
     | 
| 
      
 105 
     | 
    
         
            +
              top_options (50)
         
     | 
| 
       94 
106 
     | 
    
         
             
                on right: 7 12
         
     | 
| 
       95 
107 
     | 
    
         
             
                on left : 10 11 12
         
     | 
| 
       96 
     | 
    
         
            -
              data_engine_option ( 
     | 
| 
      
 108 
     | 
    
         
            +
              data_engine_option (51)
         
     | 
| 
       97 
109 
     | 
    
         
             
                on right: 8
         
     | 
| 
       98 
110 
     | 
    
         
             
                on left : 15 16
         
     | 
| 
       99 
     | 
    
         
            -
              data_options ( 
     | 
| 
      
 111 
     | 
    
         
            +
              data_options (52)
         
     | 
| 
       100 
112 
     | 
    
         
             
                on right: 8
         
     | 
| 
       101 
113 
     | 
    
         
             
                on left : 17 18
         
     | 
| 
       102 
     | 
    
         
            -
              proc_options ( 
     | 
| 
      
 114 
     | 
    
         
            +
              proc_options (53)
         
     | 
| 
       103 
115 
     | 
    
         
             
                on right: 9
         
     | 
| 
       104 
116 
     | 
    
         
             
                on left : 19 20
         
     | 
| 
       105 
     | 
    
         
            -
              proc_stmts ( 
     | 
| 
       106 
     | 
    
         
            -
                on right: 9  
     | 
| 
       107 
     | 
    
         
            -
                on left :  
     | 
| 
       108 
     | 
    
         
            -
              value_or_kv ( 
     | 
| 
      
 117 
     | 
    
         
            +
              proc_stmts (54)
         
     | 
| 
      
 118 
     | 
    
         
            +
                on right: 9 31
         
     | 
| 
      
 119 
     | 
    
         
            +
                on left : 31 32
         
     | 
| 
      
 120 
     | 
    
         
            +
              value_or_kv (55)
         
     | 
| 
       109 
121 
     | 
    
         
             
                on right: 11 12
         
     | 
| 
       110 
122 
     | 
    
         
             
                on left : 13 14
         
     | 
| 
       111 
     | 
    
         
            -
              opt_primary ( 
     | 
| 
      
 123 
     | 
    
         
            +
              opt_primary (56)
         
     | 
| 
       112 
124 
     | 
    
         
             
                on right: 13 26
         
     | 
| 
       113 
     | 
    
         
            -
                on left : 27 28 29
         
     | 
| 
       114 
     | 
    
         
            -
              kv ( 
     | 
| 
      
 125 
     | 
    
         
            +
                on left : 27 28 29 30
         
     | 
| 
      
 126 
     | 
    
         
            +
              kv (57)
         
     | 
| 
       115 
127 
     | 
    
         
             
                on right: 14 24
         
     | 
| 
       116 
128 
     | 
    
         
             
                on left : 26
         
     | 
| 
       117 
     | 
    
         
            -
              options ( 
     | 
| 
      
 129 
     | 
    
         
            +
              options (58)
         
     | 
| 
       118 
130 
     | 
    
         
             
                on right: 18 20 21
         
     | 
| 
       119 
131 
     | 
    
         
             
                on left : 21 22
         
     | 
| 
       120 
     | 
    
         
            -
              key_or_kv ( 
     | 
| 
      
 132 
     | 
    
         
            +
              key_or_kv (59)
         
     | 
| 
       121 
133 
     | 
    
         
             
                on right: 21 22
         
     | 
| 
       122 
134 
     | 
    
         
             
                on left : 23 24
         
     | 
| 
       123 
     | 
    
         
            -
              key ( 
     | 
| 
      
 135 
     | 
    
         
            +
              key (60)
         
     | 
| 
       124 
136 
     | 
    
         
             
                on right: 23
         
     | 
| 
       125 
137 
     | 
    
         
             
                on left : 25
         
     | 
| 
       126 
     | 
    
         
            -
              proc_stmt ( 
     | 
| 
       127 
     | 
    
         
            -
                on right:  
     | 
| 
       128 
     | 
    
         
            -
                on left :  
     | 
| 
       129 
     | 
    
         
            -
              optional_proc_stmt_options ( 
     | 
| 
       130 
     | 
    
         
            -
                on right:  
     | 
| 
       131 
     | 
    
         
            -
                on left :  
     | 
| 
       132 
     | 
    
         
            -
              proc_stmt_options ( 
     | 
| 
       133 
     | 
    
         
            -
                on right: 34 35
         
     | 
| 
       134 
     | 
    
         
            -
                on left : 35 36
         
     | 
| 
       135 
     | 
    
         
            -
              proc_primary (53)
         
     | 
| 
      
 138 
     | 
    
         
            +
              proc_stmt (61)
         
     | 
| 
      
 139 
     | 
    
         
            +
                on right: 31 32
         
     | 
| 
      
 140 
     | 
    
         
            +
                on left : 33
         
     | 
| 
      
 141 
     | 
    
         
            +
              optional_proc_stmt_options (62)
         
     | 
| 
      
 142 
     | 
    
         
            +
                on right: 33
         
     | 
| 
      
 143 
     | 
    
         
            +
                on left : 34 35
         
     | 
| 
      
 144 
     | 
    
         
            +
              proc_stmt_options (63)
         
     | 
| 
       136 
145 
     | 
    
         
             
                on right: 35 36
         
     | 
| 
       137 
     | 
    
         
            -
                on left : 37 
     | 
| 
       138 
     | 
    
         
            -
               
     | 
| 
       139 
     | 
    
         
            -
                on right:  
     | 
| 
       140 
     | 
    
         
            -
                on left : 57 58
         
     | 
| 
      
 146 
     | 
    
         
            +
                on left : 36 37
         
     | 
| 
      
 147 
     | 
    
         
            +
              proc_primary (64)
         
     | 
| 
      
 148 
     | 
    
         
            +
                on right: 36 37
         
     | 
| 
      
 149 
     | 
    
         
            +
                on left : 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
         
     | 
| 
      
 150 
     | 
    
         
            +
              termins (65)
         
     | 
| 
      
 151 
     | 
    
         
            +
                on right: 68 69
         
     | 
| 
      
 152 
     | 
    
         
            +
                on left : 69 70
         
     | 
| 
       141 
153 
     | 
    
         | 
| 
       142 
154 
     | 
    
         
             
            **Terminals, with rules where they appear
         
     | 
| 
       143 
155 
     | 
    
         | 
| 
         @@ -149,29 +161,40 @@ rule 58 termins: TERMIN 
     | 
|
| 
       149 
161 
     | 
    
         
             
              DATA_SCRIPT (5) 8
         
     | 
| 
       150 
162 
     | 
    
         
             
              DATA_END (6) 8
         
     | 
| 
       151 
163 
     | 
    
         
             
              PROC_START (7) 9
         
     | 
| 
       152 
     | 
    
         
            -
              PROC_INST (8)  
     | 
| 
      
 164 
     | 
    
         
            +
              PROC_INST (8) 33
         
     | 
| 
       153 
165 
     | 
    
         
             
              PROC_END (9) 9
         
     | 
| 
       154 
     | 
    
         
            -
              TERMIN (10) 2 8 9  
     | 
| 
       155 
     | 
    
         
            -
              IDENT (11) 8 9 16 25 26  
     | 
| 
      
 166 
     | 
    
         
            +
              TERMIN (10) 2 8 9 31 69 70
         
     | 
| 
      
 167 
     | 
    
         
            +
              IDENT (11) 8 9 16 25 26 30 38
         
     | 
| 
       156 
168 
     | 
    
         
             
              ASSIGN (12) 26
         
     | 
| 
       157 
169 
     | 
    
         
             
              COLON (13) 16
         
     | 
| 
       158 
     | 
    
         
            -
              NUMBER (14) 27  
     | 
| 
       159 
     | 
    
         
            -
               
     | 
| 
       160 
     | 
    
         
            -
               
     | 
| 
       161 
     | 
    
         
            -
               
     | 
| 
       162 
     | 
    
         
            -
               
     | 
| 
       163 
     | 
    
         
            -
               
     | 
| 
       164 
     | 
    
         
            -
               
     | 
| 
       165 
     | 
    
         
            -
               
     | 
| 
       166 
     | 
    
         
            -
               
     | 
| 
       167 
     | 
    
         
            -
               
     | 
| 
       168 
     | 
    
         
            -
               
     | 
| 
       169 
     | 
    
         
            -
               
     | 
| 
       170 
     | 
    
         
            -
               
     | 
| 
       171 
     | 
    
         
            -
               
     | 
| 
       172 
     | 
    
         
            -
               
     | 
| 
       173 
     | 
    
         
            -
               
     | 
| 
       174 
     | 
    
         
            -
               
     | 
| 
      
 170 
     | 
    
         
            +
              NUMBER (14) 27 39
         
     | 
| 
      
 171 
     | 
    
         
            +
              SQ_STRING (15) 28 40
         
     | 
| 
      
 172 
     | 
    
         
            +
              DQ_STRING (16) 29 41
         
     | 
| 
      
 173 
     | 
    
         
            +
              P_EQ (17) 42
         
     | 
| 
      
 174 
     | 
    
         
            +
              P_DEQ (18) 43
         
     | 
| 
      
 175 
     | 
    
         
            +
              P_MULT (19) 44
         
     | 
| 
      
 176 
     | 
    
         
            +
              P_PLUS (20) 45
         
     | 
| 
      
 177 
     | 
    
         
            +
              P_MINUS (21) 46
         
     | 
| 
      
 178 
     | 
    
         
            +
              P_INTDEV (22) 47
         
     | 
| 
      
 179 
     | 
    
         
            +
              P_MOD (23) 48
         
     | 
| 
      
 180 
     | 
    
         
            +
              P_IN (24) 49
         
     | 
| 
      
 181 
     | 
    
         
            +
              P_AND (25) 50
         
     | 
| 
      
 182 
     | 
    
         
            +
              P_OR (26) 51
         
     | 
| 
      
 183 
     | 
    
         
            +
              P_DAND (27) 52
         
     | 
| 
      
 184 
     | 
    
         
            +
              P_DOR (28) 53
         
     | 
| 
      
 185 
     | 
    
         
            +
              P_LT (29) 54
         
     | 
| 
      
 186 
     | 
    
         
            +
              P_ST (30) 55
         
     | 
| 
      
 187 
     | 
    
         
            +
              P_LTE (31) 56
         
     | 
| 
      
 188 
     | 
    
         
            +
              P_STE (32) 57
         
     | 
| 
      
 189 
     | 
    
         
            +
              P_HAT (33) 58
         
     | 
| 
      
 190 
     | 
    
         
            +
              P_TILDE (34) 59
         
     | 
| 
      
 191 
     | 
    
         
            +
              P_COLON (35) 60
         
     | 
| 
      
 192 
     | 
    
         
            +
              P_LPAR (36) 61
         
     | 
| 
      
 193 
     | 
    
         
            +
              P_RPAR (37) 62
         
     | 
| 
      
 194 
     | 
    
         
            +
              P_LSQBR (38) 63
         
     | 
| 
      
 195 
     | 
    
         
            +
              P_RSQBR (39) 64
         
     | 
| 
      
 196 
     | 
    
         
            +
              P_COMMA (40) 65
         
     | 
| 
      
 197 
     | 
    
         
            +
              P_SLASH (41) 66
         
     | 
| 
       175 
198 
     | 
    
         | 
| 
       176 
199 
     | 
    
         
             
            --------- State ---------
         
     | 
| 
       177 
200 
     | 
    
         | 
| 
         @@ -179,7 +202,7 @@ state 0 
     | 
|
| 
       179 
202 
     | 
    
         | 
| 
       180 
203 
     | 
    
         | 
| 
       181 
204 
     | 
    
         
             
              TERMIN        shift, and go to state 4
         
     | 
| 
       182 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 205 
     | 
    
         
            +
              $default      reduce using rule 67 (opt_termins)
         
     | 
| 
       183 
206 
     | 
    
         | 
| 
       184 
207 
     | 
    
         
             
              program       go to state 1
         
     | 
| 
       185 
208 
     | 
    
         
             
              opt_termins   go to state 2
         
     | 
| 
         @@ -207,18 +230,18 @@ state 2 
     | 
|
| 
       207 
230 
     | 
    
         | 
| 
       208 
231 
     | 
    
         
             
            state 3
         
     | 
| 
       209 
232 
     | 
    
         | 
| 
       210 
     | 
    
         
            -
               
     | 
| 
       211 
     | 
    
         
            -
               
     | 
| 
      
 233 
     | 
    
         
            +
              68) opt_termins : termins _
         
     | 
| 
      
 234 
     | 
    
         
            +
              69) termins : termins _ TERMIN
         
     | 
| 
       212 
235 
     | 
    
         | 
| 
       213 
236 
     | 
    
         
             
              TERMIN        shift, and go to state 14
         
     | 
| 
       214 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 237 
     | 
    
         
            +
              $default      reduce using rule 68 (opt_termins)
         
     | 
| 
       215 
238 
     | 
    
         | 
| 
       216 
239 
     | 
    
         | 
| 
       217 
240 
     | 
    
         
             
            state 4
         
     | 
| 
       218 
241 
     | 
    
         | 
| 
       219 
     | 
    
         
            -
               
     | 
| 
      
 242 
     | 
    
         
            +
              70) termins : TERMIN _
         
     | 
| 
       220 
243 
     | 
    
         | 
| 
       221 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 244 
     | 
    
         
            +
              $default      reduce using rule 70 (termins)
         
     | 
| 
       222 
245 
     | 
    
         | 
| 
       223 
246 
     | 
    
         | 
| 
       224 
247 
     | 
    
         
             
            state 5
         
     | 
| 
         @@ -233,7 +256,7 @@ state 6 
     | 
|
| 
       233 
256 
     | 
    
         
             
               2) blocks : blocks _ TERMIN block
         
     | 
| 
       234 
257 
     | 
    
         | 
| 
       235 
258 
     | 
    
         
             
              TERMIN        shift, and go to state 17
         
     | 
| 
       236 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 259 
     | 
    
         
            +
              $default      reduce using rule 67 (opt_termins)
         
     | 
| 
       237 
260 
     | 
    
         | 
| 
       238 
261 
     | 
    
         
             
              opt_termins   go to state 16
         
     | 
| 
       239 
262 
     | 
    
         
             
              termins       go to state 3
         
     | 
| 
         @@ -274,8 +297,10 @@ state 11 
     | 
|
| 
       274 
297 
     | 
    
         
             
              IDENT         [reduce using rule 10 (top_options)]
         
     | 
| 
       275 
298 
     | 
    
         
             
              NUMBER        shift, and go to state 23
         
     | 
| 
       276 
299 
     | 
    
         
             
              NUMBER        [reduce using rule 10 (top_options)]
         
     | 
| 
       277 
     | 
    
         
            -
               
     | 
| 
       278 
     | 
    
         
            -
               
     | 
| 
      
 300 
     | 
    
         
            +
              SQ_STRING     shift, and go to state 24
         
     | 
| 
      
 301 
     | 
    
         
            +
              SQ_STRING     [reduce using rule 10 (top_options)]
         
     | 
| 
      
 302 
     | 
    
         
            +
              DQ_STRING     shift, and go to state 25
         
     | 
| 
      
 303 
     | 
    
         
            +
              DQ_STRING     [reduce using rule 10 (top_options)]
         
     | 
| 
       279 
304 
     | 
    
         
             
              $default      reduce using rule 10 (top_options)
         
     | 
| 
       280 
305 
     | 
    
         | 
| 
       281 
306 
     | 
    
         
             
              top_options   go to state 18
         
     | 
| 
         @@ -287,23 +312,23 @@ state 12 
     | 
|
| 
       287 
312 
     | 
    
         | 
| 
       288 
313 
     | 
    
         
             
               8) data_block : DATA_START _ data_engine_option IDENT data_options TERMIN DATA_SCRIPT DATA_END
         
     | 
| 
       289 
314 
     | 
    
         | 
| 
       290 
     | 
    
         
            -
              COLON         shift, and go to state  
     | 
| 
      
 315 
     | 
    
         
            +
              COLON         shift, and go to state 27
         
     | 
| 
       291 
316 
     | 
    
         
             
              $default      reduce using rule 15 (data_engine_option)
         
     | 
| 
       292 
317 
     | 
    
         | 
| 
       293 
     | 
    
         
            -
              data_engine_option  go to state  
     | 
| 
      
 318 
     | 
    
         
            +
              data_engine_option  go to state 26
         
     | 
| 
       294 
319 
     | 
    
         | 
| 
       295 
320 
     | 
    
         
             
            state 13
         
     | 
| 
       296 
321 
     | 
    
         | 
| 
       297 
322 
     | 
    
         
             
               9) proc_block : PROC_START _ IDENT proc_options TERMIN proc_stmts TERMIN PROC_END
         
     | 
| 
       298 
323 
     | 
    
         | 
| 
       299 
     | 
    
         
            -
              IDENT         shift, and go to state  
     | 
| 
      
 324 
     | 
    
         
            +
              IDENT         shift, and go to state 28
         
     | 
| 
       300 
325 
     | 
    
         | 
| 
       301 
326 
     | 
    
         | 
| 
       302 
327 
     | 
    
         
             
            state 14
         
     | 
| 
       303 
328 
     | 
    
         | 
| 
       304 
     | 
    
         
            -
               
     | 
| 
      
 329 
     | 
    
         
            +
              69) termins : termins TERMIN _
         
     | 
| 
       305 
330 
     | 
    
         | 
| 
       306 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 331 
     | 
    
         
            +
              $default      reduce using rule 69 (termins)
         
     | 
| 
       307 
332 
     | 
    
         | 
| 
       308 
333 
     | 
    
         | 
| 
       309 
334 
     | 
    
         
             
            state 15
         
     | 
| 
         @@ -322,14 +347,14 @@ state 16 
     | 
|
| 
       322 
347 
     | 
    
         
             
            state 17
         
     | 
| 
       323 
348 
     | 
    
         | 
| 
       324 
349 
     | 
    
         
             
               2) blocks : blocks TERMIN _ block
         
     | 
| 
       325 
     | 
    
         
            -
               
     | 
| 
      
 350 
     | 
    
         
            +
              70) termins : TERMIN _
         
     | 
| 
       326 
351 
     | 
    
         | 
| 
       327 
352 
     | 
    
         
             
              TOP_INST      shift, and go to state 11
         
     | 
| 
       328 
353 
     | 
    
         
             
              DATA_START    shift, and go to state 12
         
     | 
| 
       329 
354 
     | 
    
         
             
              PROC_START    shift, and go to state 13
         
     | 
| 
       330 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 355 
     | 
    
         
            +
              $default      reduce using rule 70 (termins)
         
     | 
| 
       331 
356 
     | 
    
         | 
| 
       332 
     | 
    
         
            -
              block         go to state  
     | 
| 
      
 357 
     | 
    
         
            +
              block         go to state 29
         
     | 
| 
       333 
358 
     | 
    
         
             
              top_stmt      go to state 8
         
     | 
| 
       334 
359 
     | 
    
         
             
              data_block    go to state 9
         
     | 
| 
       335 
360 
     | 
    
         
             
              proc_block    go to state 10
         
     | 
| 
         @@ -339,12 +364,13 @@ state 18 
     | 
|
| 
       339 
364 
     | 
    
         
             
               7) top_stmt : TOP_INST top_options _ TOP_INST_END
         
     | 
| 
       340 
365 
     | 
    
         
             
              12) top_options : top_options _ value_or_kv
         
     | 
| 
       341 
366 
     | 
    
         | 
| 
       342 
     | 
    
         
            -
              TOP_INST_END  shift, and go to state  
     | 
| 
      
 367 
     | 
    
         
            +
              TOP_INST_END  shift, and go to state 30
         
     | 
| 
       343 
368 
     | 
    
         
             
              IDENT         shift, and go to state 22
         
     | 
| 
       344 
369 
     | 
    
         
             
              NUMBER        shift, and go to state 23
         
     | 
| 
       345 
     | 
    
         
            -
               
     | 
| 
      
 370 
     | 
    
         
            +
              SQ_STRING     shift, and go to state 24
         
     | 
| 
      
 371 
     | 
    
         
            +
              DQ_STRING     shift, and go to state 25
         
     | 
| 
       346 
372 
     | 
    
         | 
| 
       347 
     | 
    
         
            -
              value_or_kv   go to state  
     | 
| 
      
 373 
     | 
    
         
            +
              value_or_kv   go to state 31
         
     | 
| 
       348 
374 
     | 
    
         
             
              opt_primary   go to state 20
         
     | 
| 
       349 
375 
     | 
    
         
             
              kv            go to state 21
         
     | 
| 
       350 
376 
     | 
    
         | 
| 
         @@ -372,10 +398,10 @@ state 21 
     | 
|
| 
       372 
398 
     | 
    
         
             
            state 22
         
     | 
| 
       373 
399 
     | 
    
         | 
| 
       374 
400 
     | 
    
         
             
              26) kv : IDENT _ ASSIGN opt_primary
         
     | 
| 
       375 
     | 
    
         
            -
               
     | 
| 
      
 401 
     | 
    
         
            +
              30) opt_primary : IDENT _
         
     | 
| 
       376 
402 
     | 
    
         | 
| 
       377 
     | 
    
         
            -
              ASSIGN        shift, and go to state  
     | 
| 
       378 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 403 
     | 
    
         
            +
              ASSIGN        shift, and go to state 32
         
     | 
| 
      
 404 
     | 
    
         
            +
              $default      reduce using rule 30 (opt_primary)
         
     | 
| 
       379 
405 
     | 
    
         | 
| 
       380 
406 
     | 
    
         | 
| 
       381 
407 
     | 
    
         
             
            state 23
         
     | 
| 
         @@ -387,445 +413,552 @@ state 23 
     | 
|
| 
       387 
413 
     | 
    
         | 
| 
       388 
414 
     | 
    
         
             
            state 24
         
     | 
| 
       389 
415 
     | 
    
         | 
| 
       390 
     | 
    
         
            -
              28) opt_primary :  
     | 
| 
      
 416 
     | 
    
         
            +
              28) opt_primary : SQ_STRING _
         
     | 
| 
       391 
417 
     | 
    
         | 
| 
       392 
418 
     | 
    
         
             
              $default      reduce using rule 28 (opt_primary)
         
     | 
| 
       393 
419 
     | 
    
         | 
| 
       394 
420 
     | 
    
         | 
| 
       395 
421 
     | 
    
         
             
            state 25
         
     | 
| 
       396 
422 
     | 
    
         | 
| 
       397 
     | 
    
         
            -
             
     | 
| 
      
 423 
     | 
    
         
            +
              29) opt_primary : DQ_STRING _
         
     | 
| 
       398 
424 
     | 
    
         | 
| 
       399 
     | 
    
         
            -
               
     | 
| 
      
 425 
     | 
    
         
            +
              $default      reduce using rule 29 (opt_primary)
         
     | 
| 
       400 
426 
     | 
    
         | 
| 
       401 
427 
     | 
    
         | 
| 
       402 
428 
     | 
    
         
             
            state 26
         
     | 
| 
       403 
429 
     | 
    
         | 
| 
       404 
     | 
    
         
            -
             
     | 
| 
      
 430 
     | 
    
         
            +
               8) data_block : DATA_START data_engine_option _ IDENT data_options TERMIN DATA_SCRIPT DATA_END
         
     | 
| 
       405 
431 
     | 
    
         | 
| 
       406 
432 
     | 
    
         
             
              IDENT         shift, and go to state 33
         
     | 
| 
       407 
433 
     | 
    
         | 
| 
       408 
434 
     | 
    
         | 
| 
       409 
435 
     | 
    
         
             
            state 27
         
     | 
| 
       410 
436 
     | 
    
         | 
| 
      
 437 
     | 
    
         
            +
              16) data_engine_option : COLON _ IDENT
         
     | 
| 
      
 438 
     | 
    
         
            +
             
     | 
| 
      
 439 
     | 
    
         
            +
              IDENT         shift, and go to state 34
         
     | 
| 
      
 440 
     | 
    
         
            +
             
     | 
| 
      
 441 
     | 
    
         
            +
             
     | 
| 
      
 442 
     | 
    
         
            +
            state 28
         
     | 
| 
      
 443 
     | 
    
         
            +
             
     | 
| 
       411 
444 
     | 
    
         
             
               9) proc_block : PROC_START IDENT _ proc_options TERMIN proc_stmts TERMIN PROC_END
         
     | 
| 
       412 
445 
     | 
    
         | 
| 
       413 
     | 
    
         
            -
              IDENT         shift, and go to state  
     | 
| 
      
 446 
     | 
    
         
            +
              IDENT         shift, and go to state 40
         
     | 
| 
       414 
447 
     | 
    
         
             
              $default      reduce using rule 19 (proc_options)
         
     | 
| 
       415 
448 
     | 
    
         | 
| 
       416 
     | 
    
         
            -
              proc_options  go to state  
     | 
| 
       417 
     | 
    
         
            -
              options       go to state  
     | 
| 
       418 
     | 
    
         
            -
              key_or_kv     go to state  
     | 
| 
       419 
     | 
    
         
            -
              key           go to state  
     | 
| 
       420 
     | 
    
         
            -
              kv            go to state  
     | 
| 
      
 449 
     | 
    
         
            +
              proc_options  go to state 35
         
     | 
| 
      
 450 
     | 
    
         
            +
              options       go to state 36
         
     | 
| 
      
 451 
     | 
    
         
            +
              key_or_kv     go to state 37
         
     | 
| 
      
 452 
     | 
    
         
            +
              key           go to state 38
         
     | 
| 
      
 453 
     | 
    
         
            +
              kv            go to state 39
         
     | 
| 
       421 
454 
     | 
    
         | 
| 
       422 
     | 
    
         
            -
            state  
     | 
| 
      
 455 
     | 
    
         
            +
            state 29
         
     | 
| 
       423 
456 
     | 
    
         | 
| 
       424 
457 
     | 
    
         
             
               2) blocks : blocks TERMIN block _
         
     | 
| 
       425 
458 
     | 
    
         | 
| 
       426 
459 
     | 
    
         
             
              $default      reduce using rule 2 (blocks)
         
     | 
| 
       427 
460 
     | 
    
         | 
| 
       428 
461 
     | 
    
         | 
| 
       429 
     | 
    
         
            -
            state  
     | 
| 
      
 462 
     | 
    
         
            +
            state 30
         
     | 
| 
       430 
463 
     | 
    
         | 
| 
       431 
464 
     | 
    
         
             
               7) top_stmt : TOP_INST top_options TOP_INST_END _
         
     | 
| 
       432 
465 
     | 
    
         | 
| 
       433 
466 
     | 
    
         
             
              $default      reduce using rule 7 (top_stmt)
         
     | 
| 
       434 
467 
     | 
    
         | 
| 
       435 
468 
     | 
    
         | 
| 
       436 
     | 
    
         
            -
            state  
     | 
| 
      
 469 
     | 
    
         
            +
            state 31
         
     | 
| 
       437 
470 
     | 
    
         | 
| 
       438 
471 
     | 
    
         
             
              12) top_options : top_options value_or_kv _
         
     | 
| 
       439 
472 
     | 
    
         | 
| 
       440 
473 
     | 
    
         
             
              $default      reduce using rule 12 (top_options)
         
     | 
| 
       441 
474 
     | 
    
         | 
| 
       442 
475 
     | 
    
         | 
| 
       443 
     | 
    
         
            -
            state  
     | 
| 
      
 476 
     | 
    
         
            +
            state 32
         
     | 
| 
       444 
477 
     | 
    
         | 
| 
       445 
478 
     | 
    
         
             
              26) kv : IDENT ASSIGN _ opt_primary
         
     | 
| 
       446 
479 
     | 
    
         | 
| 
       447 
     | 
    
         
            -
              IDENT         shift, and go to state  
     | 
| 
      
 480 
     | 
    
         
            +
              IDENT         shift, and go to state 42
         
     | 
| 
       448 
481 
     | 
    
         
             
              NUMBER        shift, and go to state 23
         
     | 
| 
       449 
     | 
    
         
            -
               
     | 
| 
      
 482 
     | 
    
         
            +
              SQ_STRING     shift, and go to state 24
         
     | 
| 
      
 483 
     | 
    
         
            +
              DQ_STRING     shift, and go to state 25
         
     | 
| 
       450 
484 
     | 
    
         | 
| 
       451 
     | 
    
         
            -
              opt_primary   go to state  
     | 
| 
      
 485 
     | 
    
         
            +
              opt_primary   go to state 41
         
     | 
| 
       452 
486 
     | 
    
         | 
| 
       453 
     | 
    
         
            -
            state  
     | 
| 
      
 487 
     | 
    
         
            +
            state 33
         
     | 
| 
       454 
488 
     | 
    
         | 
| 
       455 
489 
     | 
    
         
             
               8) data_block : DATA_START data_engine_option IDENT _ data_options TERMIN DATA_SCRIPT DATA_END
         
     | 
| 
       456 
490 
     | 
    
         | 
| 
       457 
     | 
    
         
            -
              IDENT         shift, and go to state  
     | 
| 
      
 491 
     | 
    
         
            +
              IDENT         shift, and go to state 40
         
     | 
| 
       458 
492 
     | 
    
         
             
              $default      reduce using rule 17 (data_options)
         
     | 
| 
       459 
493 
     | 
    
         | 
| 
       460 
     | 
    
         
            -
              data_options  go to state  
     | 
| 
       461 
     | 
    
         
            -
              options       go to state  
     | 
| 
       462 
     | 
    
         
            -
              key_or_kv     go to state  
     | 
| 
       463 
     | 
    
         
            -
              key           go to state  
     | 
| 
       464 
     | 
    
         
            -
              kv            go to state  
     | 
| 
      
 494 
     | 
    
         
            +
              data_options  go to state 43
         
     | 
| 
      
 495 
     | 
    
         
            +
              options       go to state 44
         
     | 
| 
      
 496 
     | 
    
         
            +
              key_or_kv     go to state 37
         
     | 
| 
      
 497 
     | 
    
         
            +
              key           go to state 38
         
     | 
| 
      
 498 
     | 
    
         
            +
              kv            go to state 39
         
     | 
| 
       465 
499 
     | 
    
         | 
| 
       466 
     | 
    
         
            -
            state  
     | 
| 
      
 500 
     | 
    
         
            +
            state 34
         
     | 
| 
       467 
501 
     | 
    
         | 
| 
       468 
502 
     | 
    
         
             
              16) data_engine_option : COLON IDENT _
         
     | 
| 
       469 
503 
     | 
    
         | 
| 
       470 
504 
     | 
    
         
             
              $default      reduce using rule 16 (data_engine_option)
         
     | 
| 
       471 
505 
     | 
    
         | 
| 
       472 
506 
     | 
    
         | 
| 
       473 
     | 
    
         
            -
            state  
     | 
| 
      
 507 
     | 
    
         
            +
            state 35
         
     | 
| 
       474 
508 
     | 
    
         | 
| 
       475 
509 
     | 
    
         
             
               9) proc_block : PROC_START IDENT proc_options _ TERMIN proc_stmts TERMIN PROC_END
         
     | 
| 
       476 
510 
     | 
    
         | 
| 
       477 
     | 
    
         
            -
              TERMIN        shift, and go to state  
     | 
| 
      
 511 
     | 
    
         
            +
              TERMIN        shift, and go to state 45
         
     | 
| 
       478 
512 
     | 
    
         | 
| 
       479 
513 
     | 
    
         | 
| 
       480 
     | 
    
         
            -
            state  
     | 
| 
      
 514 
     | 
    
         
            +
            state 36
         
     | 
| 
       481 
515 
     | 
    
         | 
| 
       482 
516 
     | 
    
         
             
              20) proc_options : options _
         
     | 
| 
       483 
517 
     | 
    
         
             
              21) options : options _ key_or_kv
         
     | 
| 
       484 
518 
     | 
    
         | 
| 
       485 
     | 
    
         
            -
              IDENT         shift, and go to state  
     | 
| 
      
 519 
     | 
    
         
            +
              IDENT         shift, and go to state 40
         
     | 
| 
       486 
520 
     | 
    
         
             
              $default      reduce using rule 20 (proc_options)
         
     | 
| 
       487 
521 
     | 
    
         | 
| 
       488 
     | 
    
         
            -
              key_or_kv     go to state  
     | 
| 
       489 
     | 
    
         
            -
              key           go to state  
     | 
| 
       490 
     | 
    
         
            -
              kv            go to state  
     | 
| 
      
 522 
     | 
    
         
            +
              key_or_kv     go to state 46
         
     | 
| 
      
 523 
     | 
    
         
            +
              key           go to state 38
         
     | 
| 
      
 524 
     | 
    
         
            +
              kv            go to state 39
         
     | 
| 
       491 
525 
     | 
    
         | 
| 
       492 
     | 
    
         
            -
            state  
     | 
| 
      
 526 
     | 
    
         
            +
            state 37
         
     | 
| 
       493 
527 
     | 
    
         | 
| 
       494 
528 
     | 
    
         
             
              22) options : key_or_kv _
         
     | 
| 
       495 
529 
     | 
    
         | 
| 
       496 
530 
     | 
    
         
             
              $default      reduce using rule 22 (options)
         
     | 
| 
       497 
531 
     | 
    
         | 
| 
       498 
532 
     | 
    
         | 
| 
       499 
     | 
    
         
            -
            state  
     | 
| 
      
 533 
     | 
    
         
            +
            state 38
         
     | 
| 
       500 
534 
     | 
    
         | 
| 
       501 
535 
     | 
    
         
             
              23) key_or_kv : key _
         
     | 
| 
       502 
536 
     | 
    
         | 
| 
       503 
537 
     | 
    
         
             
              $default      reduce using rule 23 (key_or_kv)
         
     | 
| 
       504 
538 
     | 
    
         | 
| 
       505 
539 
     | 
    
         | 
| 
       506 
     | 
    
         
            -
            state  
     | 
| 
      
 540 
     | 
    
         
            +
            state 39
         
     | 
| 
       507 
541 
     | 
    
         | 
| 
       508 
542 
     | 
    
         
             
              24) key_or_kv : kv _
         
     | 
| 
       509 
543 
     | 
    
         | 
| 
       510 
544 
     | 
    
         
             
              $default      reduce using rule 24 (key_or_kv)
         
     | 
| 
       511 
545 
     | 
    
         | 
| 
       512 
546 
     | 
    
         | 
| 
       513 
     | 
    
         
            -
            state  
     | 
| 
      
 547 
     | 
    
         
            +
            state 40
         
     | 
| 
       514 
548 
     | 
    
         | 
| 
       515 
549 
     | 
    
         
             
              25) key : IDENT _
         
     | 
| 
       516 
550 
     | 
    
         
             
              26) kv : IDENT _ ASSIGN opt_primary
         
     | 
| 
       517 
551 
     | 
    
         | 
| 
       518 
     | 
    
         
            -
              ASSIGN        shift, and go to state  
     | 
| 
      
 552 
     | 
    
         
            +
              ASSIGN        shift, and go to state 32
         
     | 
| 
       519 
553 
     | 
    
         
             
              $default      reduce using rule 25 (key)
         
     | 
| 
       520 
554 
     | 
    
         | 
| 
       521 
555 
     | 
    
         | 
| 
       522 
     | 
    
         
            -
            state  
     | 
| 
      
 556 
     | 
    
         
            +
            state 41
         
     | 
| 
       523 
557 
     | 
    
         | 
| 
       524 
558 
     | 
    
         
             
              26) kv : IDENT ASSIGN opt_primary _
         
     | 
| 
       525 
559 
     | 
    
         | 
| 
       526 
560 
     | 
    
         
             
              $default      reduce using rule 26 (kv)
         
     | 
| 
       527 
561 
     | 
    
         | 
| 
       528 
562 
     | 
    
         | 
| 
       529 
     | 
    
         
            -
            state  
     | 
| 
      
 563 
     | 
    
         
            +
            state 42
         
     | 
| 
       530 
564 
     | 
    
         | 
| 
       531 
     | 
    
         
            -
               
     | 
| 
      
 565 
     | 
    
         
            +
              30) opt_primary : IDENT _
         
     | 
| 
       532 
566 
     | 
    
         | 
| 
       533 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 567 
     | 
    
         
            +
              $default      reduce using rule 30 (opt_primary)
         
     | 
| 
       534 
568 
     | 
    
         | 
| 
       535 
569 
     | 
    
         | 
| 
       536 
     | 
    
         
            -
            state  
     | 
| 
      
 570 
     | 
    
         
            +
            state 43
         
     | 
| 
       537 
571 
     | 
    
         | 
| 
       538 
572 
     | 
    
         
             
               8) data_block : DATA_START data_engine_option IDENT data_options _ TERMIN DATA_SCRIPT DATA_END
         
     | 
| 
       539 
573 
     | 
    
         | 
| 
       540 
     | 
    
         
            -
              TERMIN        shift, and go to state  
     | 
| 
      
 574 
     | 
    
         
            +
              TERMIN        shift, and go to state 47
         
     | 
| 
       541 
575 
     | 
    
         | 
| 
       542 
576 
     | 
    
         | 
| 
       543 
     | 
    
         
            -
            state  
     | 
| 
      
 577 
     | 
    
         
            +
            state 44
         
     | 
| 
       544 
578 
     | 
    
         | 
| 
       545 
579 
     | 
    
         
             
              18) data_options : options _
         
     | 
| 
       546 
580 
     | 
    
         
             
              21) options : options _ key_or_kv
         
     | 
| 
       547 
581 
     | 
    
         | 
| 
       548 
     | 
    
         
            -
              IDENT         shift, and go to state  
     | 
| 
      
 582 
     | 
    
         
            +
              IDENT         shift, and go to state 40
         
     | 
| 
       549 
583 
     | 
    
         
             
              $default      reduce using rule 18 (data_options)
         
     | 
| 
       550 
584 
     | 
    
         | 
| 
       551 
     | 
    
         
            -
              key_or_kv     go to state  
     | 
| 
       552 
     | 
    
         
            -
              key           go to state  
     | 
| 
       553 
     | 
    
         
            -
              kv            go to state  
     | 
| 
      
 585 
     | 
    
         
            +
              key_or_kv     go to state 46
         
     | 
| 
      
 586 
     | 
    
         
            +
              key           go to state 38
         
     | 
| 
      
 587 
     | 
    
         
            +
              kv            go to state 39
         
     | 
| 
       554 
588 
     | 
    
         | 
| 
       555 
     | 
    
         
            -
            state  
     | 
| 
      
 589 
     | 
    
         
            +
            state 45
         
     | 
| 
       556 
590 
     | 
    
         | 
| 
       557 
591 
     | 
    
         
             
               9) proc_block : PROC_START IDENT proc_options TERMIN _ proc_stmts TERMIN PROC_END
         
     | 
| 
       558 
592 
     | 
    
         | 
| 
       559 
     | 
    
         
            -
              PROC_INST     shift, and go to state  
     | 
| 
      
 593 
     | 
    
         
            +
              PROC_INST     shift, and go to state 50
         
     | 
| 
       560 
594 
     | 
    
         | 
| 
       561 
     | 
    
         
            -
              proc_stmts    go to state  
     | 
| 
       562 
     | 
    
         
            -
              proc_stmt     go to state  
     | 
| 
      
 595 
     | 
    
         
            +
              proc_stmts    go to state 48
         
     | 
| 
      
 596 
     | 
    
         
            +
              proc_stmt     go to state 49
         
     | 
| 
       563 
597 
     | 
    
         | 
| 
       564 
     | 
    
         
            -
            state  
     | 
| 
      
 598 
     | 
    
         
            +
            state 46
         
     | 
| 
       565 
599 
     | 
    
         | 
| 
       566 
600 
     | 
    
         
             
              21) options : options key_or_kv _
         
     | 
| 
       567 
601 
     | 
    
         | 
| 
       568 
602 
     | 
    
         
             
              $default      reduce using rule 21 (options)
         
     | 
| 
       569 
603 
     | 
    
         | 
| 
       570 
604 
     | 
    
         | 
| 
       571 
     | 
    
         
            -
            state  
     | 
| 
      
 605 
     | 
    
         
            +
            state 47
         
     | 
| 
       572 
606 
     | 
    
         | 
| 
       573 
607 
     | 
    
         
             
               8) data_block : DATA_START data_engine_option IDENT data_options TERMIN _ DATA_SCRIPT DATA_END
         
     | 
| 
       574 
608 
     | 
    
         | 
| 
       575 
     | 
    
         
            -
              DATA_SCRIPT   shift, and go to state  
     | 
| 
      
 609 
     | 
    
         
            +
              DATA_SCRIPT   shift, and go to state 51
         
     | 
| 
       576 
610 
     | 
    
         | 
| 
       577 
611 
     | 
    
         | 
| 
       578 
     | 
    
         
            -
            state  
     | 
| 
      
 612 
     | 
    
         
            +
            state 48
         
     | 
| 
       579 
613 
     | 
    
         | 
| 
       580 
614 
     | 
    
         
             
               9) proc_block : PROC_START IDENT proc_options TERMIN proc_stmts _ TERMIN PROC_END
         
     | 
| 
       581 
     | 
    
         
            -
               
     | 
| 
      
 615 
     | 
    
         
            +
              31) proc_stmts : proc_stmts _ TERMIN proc_stmt
         
     | 
| 
       582 
616 
     | 
    
         | 
| 
       583 
     | 
    
         
            -
              TERMIN        shift, and go to state  
     | 
| 
      
 617 
     | 
    
         
            +
              TERMIN        shift, and go to state 52
         
     | 
| 
       584 
618 
     | 
    
         | 
| 
       585 
619 
     | 
    
         | 
| 
       586 
     | 
    
         
            -
            state  
     | 
| 
       587 
     | 
    
         
            -
             
     | 
| 
       588 
     | 
    
         
            -
              31) proc_stmts : proc_stmt _
         
     | 
| 
       589 
     | 
    
         
            -
             
     | 
| 
       590 
     | 
    
         
            -
              $default      reduce using rule 31 (proc_stmts)
         
     | 
| 
      
 620 
     | 
    
         
            +
            state 49
         
     | 
| 
       591 
621 
     | 
    
         | 
| 
      
 622 
     | 
    
         
            +
              32) proc_stmts : proc_stmt _
         
     | 
| 
       592 
623 
     | 
    
         | 
| 
       593 
     | 
    
         
            -
             
     | 
| 
      
 624 
     | 
    
         
            +
              $default      reduce using rule 32 (proc_stmts)
         
     | 
| 
       594 
625 
     | 
    
         | 
| 
       595 
     | 
    
         
            -
              32) proc_stmt : PROC_INST _ optional_proc_stmt_options
         
     | 
| 
       596 
     | 
    
         
            -
             
     | 
| 
       597 
     | 
    
         
            -
              IDENT         shift, and go to state 55
         
     | 
| 
       598 
     | 
    
         
            -
              NUMBER        shift, and go to state 56
         
     | 
| 
       599 
     | 
    
         
            -
              STRING        shift, and go to state 57
         
     | 
| 
       600 
     | 
    
         
            -
              P_EQ          shift, and go to state 58
         
     | 
| 
       601 
     | 
    
         
            -
              P_MULT        shift, and go to state 59
         
     | 
| 
       602 
     | 
    
         
            -
              P_PLUS        shift, and go to state 60
         
     | 
| 
       603 
     | 
    
         
            -
              P_MINUS       shift, and go to state 61
         
     | 
| 
       604 
     | 
    
         
            -
              P_HAT         shift, and go to state 62
         
     | 
| 
       605 
     | 
    
         
            -
              P_IN          shift, and go to state 63
         
     | 
| 
       606 
     | 
    
         
            -
              P_PERC        shift, and go to state 64
         
     | 
| 
       607 
     | 
    
         
            -
              P_TILDA       shift, and go to state 65
         
     | 
| 
       608 
     | 
    
         
            -
              P_COLON       shift, and go to state 66
         
     | 
| 
       609 
     | 
    
         
            -
              P_LPAR        shift, and go to state 67
         
     | 
| 
       610 
     | 
    
         
            -
              P_RPAR        shift, and go to state 68
         
     | 
| 
       611 
     | 
    
         
            -
              P_LSQBR       shift, and go to state 69
         
     | 
| 
       612 
     | 
    
         
            -
              P_RSQBR       shift, and go to state 70
         
     | 
| 
       613 
     | 
    
         
            -
              P_COMMA       shift, and go to state 71
         
     | 
| 
       614 
     | 
    
         
            -
              SEP_SLASH     shift, and go to state 72
         
     | 
| 
       615 
     | 
    
         
            -
              $default      reduce using rule 33 (optional_proc_stmt_options)
         
     | 
| 
       616 
     | 
    
         
            -
             
     | 
| 
       617 
     | 
    
         
            -
              optional_proc_stmt_options  go to state 52
         
     | 
| 
       618 
     | 
    
         
            -
              proc_stmt_options  go to state 53
         
     | 
| 
       619 
     | 
    
         
            -
              proc_primary  go to state 54
         
     | 
| 
       620 
626 
     | 
    
         | 
| 
       621 
627 
     | 
    
         
             
            state 50
         
     | 
| 
       622 
628 
     | 
    
         | 
| 
       623 
     | 
    
         
            -
             
     | 
| 
       624 
     | 
    
         
            -
             
     | 
| 
       625 
     | 
    
         
            -
               
     | 
| 
      
 629 
     | 
    
         
            +
              33) proc_stmt : PROC_INST _ optional_proc_stmt_options
         
     | 
| 
      
 630 
     | 
    
         
            +
             
     | 
| 
      
 631 
     | 
    
         
            +
              IDENT         shift, and go to state 56
         
     | 
| 
      
 632 
     | 
    
         
            +
              NUMBER        shift, and go to state 57
         
     | 
| 
      
 633 
     | 
    
         
            +
              SQ_STRING     shift, and go to state 58
         
     | 
| 
      
 634 
     | 
    
         
            +
              DQ_STRING     shift, and go to state 59
         
     | 
| 
      
 635 
     | 
    
         
            +
              P_EQ          shift, and go to state 60
         
     | 
| 
      
 636 
     | 
    
         
            +
              P_DEQ         shift, and go to state 61
         
     | 
| 
      
 637 
     | 
    
         
            +
              P_MULT        shift, and go to state 62
         
     | 
| 
      
 638 
     | 
    
         
            +
              P_PLUS        shift, and go to state 63
         
     | 
| 
      
 639 
     | 
    
         
            +
              P_MINUS       shift, and go to state 64
         
     | 
| 
      
 640 
     | 
    
         
            +
              P_INTDEV      shift, and go to state 65
         
     | 
| 
      
 641 
     | 
    
         
            +
              P_MOD         shift, and go to state 66
         
     | 
| 
      
 642 
     | 
    
         
            +
              P_IN          shift, and go to state 67
         
     | 
| 
      
 643 
     | 
    
         
            +
              P_AND         shift, and go to state 68
         
     | 
| 
      
 644 
     | 
    
         
            +
              P_OR          shift, and go to state 69
         
     | 
| 
      
 645 
     | 
    
         
            +
              P_DAND        shift, and go to state 70
         
     | 
| 
      
 646 
     | 
    
         
            +
              P_DOR         shift, and go to state 71
         
     | 
| 
      
 647 
     | 
    
         
            +
              P_LT          shift, and go to state 72
         
     | 
| 
      
 648 
     | 
    
         
            +
              P_ST          shift, and go to state 73
         
     | 
| 
      
 649 
     | 
    
         
            +
              P_LTE         shift, and go to state 74
         
     | 
| 
      
 650 
     | 
    
         
            +
              P_STE         shift, and go to state 75
         
     | 
| 
      
 651 
     | 
    
         
            +
              P_HAT         shift, and go to state 76
         
     | 
| 
      
 652 
     | 
    
         
            +
              P_TILDE       shift, and go to state 77
         
     | 
| 
      
 653 
     | 
    
         
            +
              P_COLON       shift, and go to state 78
         
     | 
| 
      
 654 
     | 
    
         
            +
              P_LPAR        shift, and go to state 79
         
     | 
| 
      
 655 
     | 
    
         
            +
              P_RPAR        shift, and go to state 80
         
     | 
| 
      
 656 
     | 
    
         
            +
              P_LSQBR       shift, and go to state 81
         
     | 
| 
      
 657 
     | 
    
         
            +
              P_RSQBR       shift, and go to state 82
         
     | 
| 
      
 658 
     | 
    
         
            +
              P_COMMA       shift, and go to state 83
         
     | 
| 
      
 659 
     | 
    
         
            +
              P_SLASH       shift, and go to state 84
         
     | 
| 
      
 660 
     | 
    
         
            +
              $default      reduce using rule 34 (optional_proc_stmt_options)
         
     | 
| 
       626 
661 
     | 
    
         | 
| 
      
 662 
     | 
    
         
            +
              optional_proc_stmt_options  go to state 53
         
     | 
| 
      
 663 
     | 
    
         
            +
              proc_stmt_options  go to state 54
         
     | 
| 
      
 664 
     | 
    
         
            +
              proc_primary  go to state 55
         
     | 
| 
       627 
665 
     | 
    
         | 
| 
       628 
666 
     | 
    
         
             
            state 51
         
     | 
| 
       629 
667 
     | 
    
         | 
| 
       630 
     | 
    
         
            -
                
     | 
| 
       631 
     | 
    
         
            -
              30) proc_stmts : proc_stmts TERMIN _ proc_stmt
         
     | 
| 
      
 668 
     | 
    
         
            +
               8) data_block : DATA_START data_engine_option IDENT data_options TERMIN DATA_SCRIPT _ DATA_END
         
     | 
| 
       632 
669 
     | 
    
         | 
| 
       633 
     | 
    
         
            -
               
     | 
| 
       634 
     | 
    
         
            -
              PROC_END      shift, and go to state 74
         
     | 
| 
      
 670 
     | 
    
         
            +
              DATA_END      shift, and go to state 85
         
     | 
| 
       635 
671 
     | 
    
         | 
| 
       636 
     | 
    
         
            -
              proc_stmt     go to state 75
         
     | 
| 
       637 
672 
     | 
    
         | 
| 
       638 
673 
     | 
    
         
             
            state 52
         
     | 
| 
       639 
674 
     | 
    
         | 
| 
       640 
     | 
    
         
            -
             
     | 
| 
      
 675 
     | 
    
         
            +
               9) proc_block : PROC_START IDENT proc_options TERMIN proc_stmts TERMIN _ PROC_END
         
     | 
| 
      
 676 
     | 
    
         
            +
              31) proc_stmts : proc_stmts TERMIN _ proc_stmt
         
     | 
| 
       641 
677 
     | 
    
         | 
| 
       642 
     | 
    
         
            -
               
     | 
| 
      
 678 
     | 
    
         
            +
              PROC_INST     shift, and go to state 50
         
     | 
| 
      
 679 
     | 
    
         
            +
              PROC_END      shift, and go to state 86
         
     | 
| 
       643 
680 
     | 
    
         | 
| 
      
 681 
     | 
    
         
            +
              proc_stmt     go to state 87
         
     | 
| 
       644 
682 
     | 
    
         | 
| 
       645 
683 
     | 
    
         
             
            state 53
         
     | 
| 
       646 
684 
     | 
    
         | 
| 
       647 
     | 
    
         
            -
               
     | 
| 
       648 
     | 
    
         
            -
              35) proc_stmt_options : proc_stmt_options _ proc_primary
         
     | 
| 
       649 
     | 
    
         
            -
             
     | 
| 
       650 
     | 
    
         
            -
              IDENT         shift, and go to state 55
         
     | 
| 
       651 
     | 
    
         
            -
              NUMBER        shift, and go to state 56
         
     | 
| 
       652 
     | 
    
         
            -
              STRING        shift, and go to state 57
         
     | 
| 
       653 
     | 
    
         
            -
              P_EQ          shift, and go to state 58
         
     | 
| 
       654 
     | 
    
         
            -
              P_MULT        shift, and go to state 59
         
     | 
| 
       655 
     | 
    
         
            -
              P_PLUS        shift, and go to state 60
         
     | 
| 
       656 
     | 
    
         
            -
              P_MINUS       shift, and go to state 61
         
     | 
| 
       657 
     | 
    
         
            -
              P_HAT         shift, and go to state 62
         
     | 
| 
       658 
     | 
    
         
            -
              P_IN          shift, and go to state 63
         
     | 
| 
       659 
     | 
    
         
            -
              P_PERC        shift, and go to state 64
         
     | 
| 
       660 
     | 
    
         
            -
              P_TILDA       shift, and go to state 65
         
     | 
| 
       661 
     | 
    
         
            -
              P_COLON       shift, and go to state 66
         
     | 
| 
       662 
     | 
    
         
            -
              P_LPAR        shift, and go to state 67
         
     | 
| 
       663 
     | 
    
         
            -
              P_RPAR        shift, and go to state 68
         
     | 
| 
       664 
     | 
    
         
            -
              P_LSQBR       shift, and go to state 69
         
     | 
| 
       665 
     | 
    
         
            -
              P_RSQBR       shift, and go to state 70
         
     | 
| 
       666 
     | 
    
         
            -
              P_COMMA       shift, and go to state 71
         
     | 
| 
       667 
     | 
    
         
            -
              SEP_SLASH     shift, and go to state 72
         
     | 
| 
       668 
     | 
    
         
            -
              $default      reduce using rule 34 (optional_proc_stmt_options)
         
     | 
| 
       669 
     | 
    
         
            -
             
     | 
| 
       670 
     | 
    
         
            -
              proc_primary  go to state 76
         
     | 
| 
      
 685 
     | 
    
         
            +
              33) proc_stmt : PROC_INST optional_proc_stmt_options _
         
     | 
| 
       671 
686 
     | 
    
         | 
| 
       672 
     | 
    
         
            -
             
     | 
| 
      
 687 
     | 
    
         
            +
              $default      reduce using rule 33 (proc_stmt)
         
     | 
| 
       673 
688 
     | 
    
         | 
| 
       674 
     | 
    
         
            -
              36) proc_stmt_options : proc_primary _
         
     | 
| 
       675 
689 
     | 
    
         | 
| 
       676 
     | 
    
         
            -
             
     | 
| 
      
 690 
     | 
    
         
            +
            state 54
         
     | 
| 
       677 
691 
     | 
    
         | 
| 
      
 692 
     | 
    
         
            +
              35) optional_proc_stmt_options : proc_stmt_options _
         
     | 
| 
      
 693 
     | 
    
         
            +
              36) proc_stmt_options : proc_stmt_options _ proc_primary
         
     | 
| 
      
 694 
     | 
    
         
            +
             
     | 
| 
      
 695 
     | 
    
         
            +
              IDENT         shift, and go to state 56
         
     | 
| 
      
 696 
     | 
    
         
            +
              NUMBER        shift, and go to state 57
         
     | 
| 
      
 697 
     | 
    
         
            +
              SQ_STRING     shift, and go to state 58
         
     | 
| 
      
 698 
     | 
    
         
            +
              DQ_STRING     shift, and go to state 59
         
     | 
| 
      
 699 
     | 
    
         
            +
              P_EQ          shift, and go to state 60
         
     | 
| 
      
 700 
     | 
    
         
            +
              P_DEQ         shift, and go to state 61
         
     | 
| 
      
 701 
     | 
    
         
            +
              P_MULT        shift, and go to state 62
         
     | 
| 
      
 702 
     | 
    
         
            +
              P_PLUS        shift, and go to state 63
         
     | 
| 
      
 703 
     | 
    
         
            +
              P_MINUS       shift, and go to state 64
         
     | 
| 
      
 704 
     | 
    
         
            +
              P_INTDEV      shift, and go to state 65
         
     | 
| 
      
 705 
     | 
    
         
            +
              P_MOD         shift, and go to state 66
         
     | 
| 
      
 706 
     | 
    
         
            +
              P_IN          shift, and go to state 67
         
     | 
| 
      
 707 
     | 
    
         
            +
              P_AND         shift, and go to state 68
         
     | 
| 
      
 708 
     | 
    
         
            +
              P_OR          shift, and go to state 69
         
     | 
| 
      
 709 
     | 
    
         
            +
              P_DAND        shift, and go to state 70
         
     | 
| 
      
 710 
     | 
    
         
            +
              P_DOR         shift, and go to state 71
         
     | 
| 
      
 711 
     | 
    
         
            +
              P_LT          shift, and go to state 72
         
     | 
| 
      
 712 
     | 
    
         
            +
              P_ST          shift, and go to state 73
         
     | 
| 
      
 713 
     | 
    
         
            +
              P_LTE         shift, and go to state 74
         
     | 
| 
      
 714 
     | 
    
         
            +
              P_STE         shift, and go to state 75
         
     | 
| 
      
 715 
     | 
    
         
            +
              P_HAT         shift, and go to state 76
         
     | 
| 
      
 716 
     | 
    
         
            +
              P_TILDE       shift, and go to state 77
         
     | 
| 
      
 717 
     | 
    
         
            +
              P_COLON       shift, and go to state 78
         
     | 
| 
      
 718 
     | 
    
         
            +
              P_LPAR        shift, and go to state 79
         
     | 
| 
      
 719 
     | 
    
         
            +
              P_RPAR        shift, and go to state 80
         
     | 
| 
      
 720 
     | 
    
         
            +
              P_LSQBR       shift, and go to state 81
         
     | 
| 
      
 721 
     | 
    
         
            +
              P_RSQBR       shift, and go to state 82
         
     | 
| 
      
 722 
     | 
    
         
            +
              P_COMMA       shift, and go to state 83
         
     | 
| 
      
 723 
     | 
    
         
            +
              P_SLASH       shift, and go to state 84
         
     | 
| 
      
 724 
     | 
    
         
            +
              $default      reduce using rule 35 (optional_proc_stmt_options)
         
     | 
| 
      
 725 
     | 
    
         
            +
             
     | 
| 
      
 726 
     | 
    
         
            +
              proc_primary  go to state 88
         
     | 
| 
       678 
727 
     | 
    
         | 
| 
       679 
728 
     | 
    
         
             
            state 55
         
     | 
| 
       680 
729 
     | 
    
         | 
| 
       681 
     | 
    
         
            -
              37)  
     | 
| 
      
 730 
     | 
    
         
            +
              37) proc_stmt_options : proc_primary _
         
     | 
| 
       682 
731 
     | 
    
         | 
| 
       683 
     | 
    
         
            -
              $default      reduce using rule 37 ( 
     | 
| 
      
 732 
     | 
    
         
            +
              $default      reduce using rule 37 (proc_stmt_options)
         
     | 
| 
       684 
733 
     | 
    
         | 
| 
       685 
734 
     | 
    
         | 
| 
       686 
735 
     | 
    
         
             
            state 56
         
     | 
| 
       687 
736 
     | 
    
         | 
| 
       688 
     | 
    
         
            -
              38) proc_primary :  
     | 
| 
      
 737 
     | 
    
         
            +
              38) proc_primary : IDENT _
         
     | 
| 
       689 
738 
     | 
    
         | 
| 
       690 
739 
     | 
    
         
             
              $default      reduce using rule 38 (proc_primary)
         
     | 
| 
       691 
740 
     | 
    
         | 
| 
       692 
741 
     | 
    
         | 
| 
       693 
742 
     | 
    
         
             
            state 57
         
     | 
| 
       694 
743 
     | 
    
         | 
| 
       695 
     | 
    
         
            -
              39) proc_primary :  
     | 
| 
      
 744 
     | 
    
         
            +
              39) proc_primary : NUMBER _
         
     | 
| 
       696 
745 
     | 
    
         | 
| 
       697 
746 
     | 
    
         
             
              $default      reduce using rule 39 (proc_primary)
         
     | 
| 
       698 
747 
     | 
    
         | 
| 
       699 
748 
     | 
    
         | 
| 
       700 
749 
     | 
    
         
             
            state 58
         
     | 
| 
       701 
750 
     | 
    
         | 
| 
       702 
     | 
    
         
            -
              40) proc_primary :  
     | 
| 
      
 751 
     | 
    
         
            +
              40) proc_primary : SQ_STRING _
         
     | 
| 
       703 
752 
     | 
    
         | 
| 
       704 
753 
     | 
    
         
             
              $default      reduce using rule 40 (proc_primary)
         
     | 
| 
       705 
754 
     | 
    
         | 
| 
       706 
755 
     | 
    
         | 
| 
       707 
756 
     | 
    
         
             
            state 59
         
     | 
| 
       708 
757 
     | 
    
         | 
| 
       709 
     | 
    
         
            -
              41) proc_primary :  
     | 
| 
      
 758 
     | 
    
         
            +
              41) proc_primary : DQ_STRING _
         
     | 
| 
       710 
759 
     | 
    
         | 
| 
       711 
760 
     | 
    
         
             
              $default      reduce using rule 41 (proc_primary)
         
     | 
| 
       712 
761 
     | 
    
         | 
| 
       713 
762 
     | 
    
         | 
| 
       714 
763 
     | 
    
         
             
            state 60
         
     | 
| 
       715 
764 
     | 
    
         | 
| 
       716 
     | 
    
         
            -
              42) proc_primary :  
     | 
| 
      
 765 
     | 
    
         
            +
              42) proc_primary : P_EQ _
         
     | 
| 
       717 
766 
     | 
    
         | 
| 
       718 
767 
     | 
    
         
             
              $default      reduce using rule 42 (proc_primary)
         
     | 
| 
       719 
768 
     | 
    
         | 
| 
       720 
769 
     | 
    
         | 
| 
       721 
770 
     | 
    
         
             
            state 61
         
     | 
| 
       722 
771 
     | 
    
         | 
| 
       723 
     | 
    
         
            -
              43) proc_primary :  
     | 
| 
      
 772 
     | 
    
         
            +
              43) proc_primary : P_DEQ _
         
     | 
| 
       724 
773 
     | 
    
         | 
| 
       725 
774 
     | 
    
         
             
              $default      reduce using rule 43 (proc_primary)
         
     | 
| 
       726 
775 
     | 
    
         | 
| 
       727 
776 
     | 
    
         | 
| 
       728 
777 
     | 
    
         
             
            state 62
         
     | 
| 
       729 
778 
     | 
    
         | 
| 
       730 
     | 
    
         
            -
              44) proc_primary :  
     | 
| 
      
 779 
     | 
    
         
            +
              44) proc_primary : P_MULT _
         
     | 
| 
       731 
780 
     | 
    
         | 
| 
       732 
781 
     | 
    
         
             
              $default      reduce using rule 44 (proc_primary)
         
     | 
| 
       733 
782 
     | 
    
         | 
| 
       734 
783 
     | 
    
         | 
| 
       735 
784 
     | 
    
         
             
            state 63
         
     | 
| 
       736 
785 
     | 
    
         | 
| 
       737 
     | 
    
         
            -
              45) proc_primary :  
     | 
| 
      
 786 
     | 
    
         
            +
              45) proc_primary : P_PLUS _
         
     | 
| 
       738 
787 
     | 
    
         | 
| 
       739 
788 
     | 
    
         
             
              $default      reduce using rule 45 (proc_primary)
         
     | 
| 
       740 
789 
     | 
    
         | 
| 
       741 
790 
     | 
    
         | 
| 
       742 
791 
     | 
    
         
             
            state 64
         
     | 
| 
       743 
792 
     | 
    
         | 
| 
       744 
     | 
    
         
            -
              46) proc_primary :  
     | 
| 
      
 793 
     | 
    
         
            +
              46) proc_primary : P_MINUS _
         
     | 
| 
       745 
794 
     | 
    
         | 
| 
       746 
795 
     | 
    
         
             
              $default      reduce using rule 46 (proc_primary)
         
     | 
| 
       747 
796 
     | 
    
         | 
| 
       748 
797 
     | 
    
         | 
| 
       749 
798 
     | 
    
         
             
            state 65
         
     | 
| 
       750 
799 
     | 
    
         | 
| 
       751 
     | 
    
         
            -
              47) proc_primary :  
     | 
| 
      
 800 
     | 
    
         
            +
              47) proc_primary : P_INTDEV _
         
     | 
| 
       752 
801 
     | 
    
         | 
| 
       753 
802 
     | 
    
         
             
              $default      reduce using rule 47 (proc_primary)
         
     | 
| 
       754 
803 
     | 
    
         | 
| 
       755 
804 
     | 
    
         | 
| 
       756 
805 
     | 
    
         
             
            state 66
         
     | 
| 
       757 
806 
     | 
    
         | 
| 
       758 
     | 
    
         
            -
              48) proc_primary :  
     | 
| 
      
 807 
     | 
    
         
            +
              48) proc_primary : P_MOD _
         
     | 
| 
       759 
808 
     | 
    
         | 
| 
       760 
809 
     | 
    
         
             
              $default      reduce using rule 48 (proc_primary)
         
     | 
| 
       761 
810 
     | 
    
         | 
| 
       762 
811 
     | 
    
         | 
| 
       763 
812 
     | 
    
         
             
            state 67
         
     | 
| 
       764 
813 
     | 
    
         | 
| 
       765 
     | 
    
         
            -
              49) proc_primary :  
     | 
| 
      
 814 
     | 
    
         
            +
              49) proc_primary : P_IN _
         
     | 
| 
       766 
815 
     | 
    
         | 
| 
       767 
816 
     | 
    
         
             
              $default      reduce using rule 49 (proc_primary)
         
     | 
| 
       768 
817 
     | 
    
         | 
| 
       769 
818 
     | 
    
         | 
| 
       770 
819 
     | 
    
         
             
            state 68
         
     | 
| 
       771 
820 
     | 
    
         | 
| 
       772 
     | 
    
         
            -
              50) proc_primary :  
     | 
| 
      
 821 
     | 
    
         
            +
              50) proc_primary : P_AND _
         
     | 
| 
       773 
822 
     | 
    
         | 
| 
       774 
823 
     | 
    
         
             
              $default      reduce using rule 50 (proc_primary)
         
     | 
| 
       775 
824 
     | 
    
         | 
| 
       776 
825 
     | 
    
         | 
| 
       777 
826 
     | 
    
         
             
            state 69
         
     | 
| 
       778 
827 
     | 
    
         | 
| 
       779 
     | 
    
         
            -
              51) proc_primary :  
     | 
| 
      
 828 
     | 
    
         
            +
              51) proc_primary : P_OR _
         
     | 
| 
       780 
829 
     | 
    
         | 
| 
       781 
830 
     | 
    
         
             
              $default      reduce using rule 51 (proc_primary)
         
     | 
| 
       782 
831 
     | 
    
         | 
| 
       783 
832 
     | 
    
         | 
| 
       784 
833 
     | 
    
         
             
            state 70
         
     | 
| 
       785 
834 
     | 
    
         | 
| 
       786 
     | 
    
         
            -
              52) proc_primary :  
     | 
| 
      
 835 
     | 
    
         
            +
              52) proc_primary : P_DAND _
         
     | 
| 
       787 
836 
     | 
    
         | 
| 
       788 
837 
     | 
    
         
             
              $default      reduce using rule 52 (proc_primary)
         
     | 
| 
       789 
838 
     | 
    
         | 
| 
       790 
839 
     | 
    
         | 
| 
       791 
840 
     | 
    
         
             
            state 71
         
     | 
| 
       792 
841 
     | 
    
         | 
| 
       793 
     | 
    
         
            -
              53) proc_primary :  
     | 
| 
      
 842 
     | 
    
         
            +
              53) proc_primary : P_DOR _
         
     | 
| 
       794 
843 
     | 
    
         | 
| 
       795 
844 
     | 
    
         
             
              $default      reduce using rule 53 (proc_primary)
         
     | 
| 
       796 
845 
     | 
    
         | 
| 
       797 
846 
     | 
    
         | 
| 
       798 
847 
     | 
    
         
             
            state 72
         
     | 
| 
       799 
848 
     | 
    
         | 
| 
       800 
     | 
    
         
            -
              54) proc_primary :  
     | 
| 
      
 849 
     | 
    
         
            +
              54) proc_primary : P_LT _
         
     | 
| 
       801 
850 
     | 
    
         | 
| 
       802 
851 
     | 
    
         
             
              $default      reduce using rule 54 (proc_primary)
         
     | 
| 
       803 
852 
     | 
    
         | 
| 
       804 
853 
     | 
    
         | 
| 
       805 
854 
     | 
    
         
             
            state 73
         
     | 
| 
       806 
855 
     | 
    
         | 
| 
      
 856 
     | 
    
         
            +
              55) proc_primary : P_ST _
         
     | 
| 
      
 857 
     | 
    
         
            +
             
     | 
| 
      
 858 
     | 
    
         
            +
              $default      reduce using rule 55 (proc_primary)
         
     | 
| 
      
 859 
     | 
    
         
            +
             
     | 
| 
      
 860 
     | 
    
         
            +
             
     | 
| 
      
 861 
     | 
    
         
            +
            state 74
         
     | 
| 
      
 862 
     | 
    
         
            +
             
     | 
| 
      
 863 
     | 
    
         
            +
              56) proc_primary : P_LTE _
         
     | 
| 
      
 864 
     | 
    
         
            +
             
     | 
| 
      
 865 
     | 
    
         
            +
              $default      reduce using rule 56 (proc_primary)
         
     | 
| 
      
 866 
     | 
    
         
            +
             
     | 
| 
      
 867 
     | 
    
         
            +
             
     | 
| 
      
 868 
     | 
    
         
            +
            state 75
         
     | 
| 
      
 869 
     | 
    
         
            +
             
     | 
| 
      
 870 
     | 
    
         
            +
              57) proc_primary : P_STE _
         
     | 
| 
      
 871 
     | 
    
         
            +
             
     | 
| 
      
 872 
     | 
    
         
            +
              $default      reduce using rule 57 (proc_primary)
         
     | 
| 
      
 873 
     | 
    
         
            +
             
     | 
| 
      
 874 
     | 
    
         
            +
             
     | 
| 
      
 875 
     | 
    
         
            +
            state 76
         
     | 
| 
      
 876 
     | 
    
         
            +
             
     | 
| 
      
 877 
     | 
    
         
            +
              58) proc_primary : P_HAT _
         
     | 
| 
      
 878 
     | 
    
         
            +
             
     | 
| 
      
 879 
     | 
    
         
            +
              $default      reduce using rule 58 (proc_primary)
         
     | 
| 
      
 880 
     | 
    
         
            +
             
     | 
| 
      
 881 
     | 
    
         
            +
             
     | 
| 
      
 882 
     | 
    
         
            +
            state 77
         
     | 
| 
      
 883 
     | 
    
         
            +
             
     | 
| 
      
 884 
     | 
    
         
            +
              59) proc_primary : P_TILDE _
         
     | 
| 
      
 885 
     | 
    
         
            +
             
     | 
| 
      
 886 
     | 
    
         
            +
              $default      reduce using rule 59 (proc_primary)
         
     | 
| 
      
 887 
     | 
    
         
            +
             
     | 
| 
      
 888 
     | 
    
         
            +
             
     | 
| 
      
 889 
     | 
    
         
            +
            state 78
         
     | 
| 
      
 890 
     | 
    
         
            +
             
     | 
| 
      
 891 
     | 
    
         
            +
              60) proc_primary : P_COLON _
         
     | 
| 
      
 892 
     | 
    
         
            +
             
     | 
| 
      
 893 
     | 
    
         
            +
              $default      reduce using rule 60 (proc_primary)
         
     | 
| 
      
 894 
     | 
    
         
            +
             
     | 
| 
      
 895 
     | 
    
         
            +
             
     | 
| 
      
 896 
     | 
    
         
            +
            state 79
         
     | 
| 
      
 897 
     | 
    
         
            +
             
     | 
| 
      
 898 
     | 
    
         
            +
              61) proc_primary : P_LPAR _
         
     | 
| 
      
 899 
     | 
    
         
            +
             
     | 
| 
      
 900 
     | 
    
         
            +
              $default      reduce using rule 61 (proc_primary)
         
     | 
| 
      
 901 
     | 
    
         
            +
             
     | 
| 
      
 902 
     | 
    
         
            +
             
     | 
| 
      
 903 
     | 
    
         
            +
            state 80
         
     | 
| 
      
 904 
     | 
    
         
            +
             
     | 
| 
      
 905 
     | 
    
         
            +
              62) proc_primary : P_RPAR _
         
     | 
| 
      
 906 
     | 
    
         
            +
             
     | 
| 
      
 907 
     | 
    
         
            +
              $default      reduce using rule 62 (proc_primary)
         
     | 
| 
      
 908 
     | 
    
         
            +
             
     | 
| 
      
 909 
     | 
    
         
            +
             
     | 
| 
      
 910 
     | 
    
         
            +
            state 81
         
     | 
| 
      
 911 
     | 
    
         
            +
             
     | 
| 
      
 912 
     | 
    
         
            +
              63) proc_primary : P_LSQBR _
         
     | 
| 
      
 913 
     | 
    
         
            +
             
     | 
| 
      
 914 
     | 
    
         
            +
              $default      reduce using rule 63 (proc_primary)
         
     | 
| 
      
 915 
     | 
    
         
            +
             
     | 
| 
      
 916 
     | 
    
         
            +
             
     | 
| 
      
 917 
     | 
    
         
            +
            state 82
         
     | 
| 
      
 918 
     | 
    
         
            +
             
     | 
| 
      
 919 
     | 
    
         
            +
              64) proc_primary : P_RSQBR _
         
     | 
| 
      
 920 
     | 
    
         
            +
             
     | 
| 
      
 921 
     | 
    
         
            +
              $default      reduce using rule 64 (proc_primary)
         
     | 
| 
      
 922 
     | 
    
         
            +
             
     | 
| 
      
 923 
     | 
    
         
            +
             
     | 
| 
      
 924 
     | 
    
         
            +
            state 83
         
     | 
| 
      
 925 
     | 
    
         
            +
             
     | 
| 
      
 926 
     | 
    
         
            +
              65) proc_primary : P_COMMA _
         
     | 
| 
      
 927 
     | 
    
         
            +
             
     | 
| 
      
 928 
     | 
    
         
            +
              $default      reduce using rule 65 (proc_primary)
         
     | 
| 
      
 929 
     | 
    
         
            +
             
     | 
| 
      
 930 
     | 
    
         
            +
             
     | 
| 
      
 931 
     | 
    
         
            +
            state 84
         
     | 
| 
      
 932 
     | 
    
         
            +
             
     | 
| 
      
 933 
     | 
    
         
            +
              66) proc_primary : P_SLASH _
         
     | 
| 
      
 934 
     | 
    
         
            +
             
     | 
| 
      
 935 
     | 
    
         
            +
              $default      reduce using rule 66 (proc_primary)
         
     | 
| 
      
 936 
     | 
    
         
            +
             
     | 
| 
      
 937 
     | 
    
         
            +
             
     | 
| 
      
 938 
     | 
    
         
            +
            state 85
         
     | 
| 
      
 939 
     | 
    
         
            +
             
     | 
| 
       807 
940 
     | 
    
         
             
               8) data_block : DATA_START data_engine_option IDENT data_options TERMIN DATA_SCRIPT DATA_END _
         
     | 
| 
       808 
941 
     | 
    
         | 
| 
       809 
942 
     | 
    
         
             
              $default      reduce using rule 8 (data_block)
         
     | 
| 
       810 
943 
     | 
    
         | 
| 
       811 
944 
     | 
    
         | 
| 
       812 
     | 
    
         
            -
            state  
     | 
| 
      
 945 
     | 
    
         
            +
            state 86
         
     | 
| 
       813 
946 
     | 
    
         | 
| 
       814 
947 
     | 
    
         
             
               9) proc_block : PROC_START IDENT proc_options TERMIN proc_stmts TERMIN PROC_END _
         
     | 
| 
       815 
948 
     | 
    
         | 
| 
       816 
949 
     | 
    
         
             
              $default      reduce using rule 9 (proc_block)
         
     | 
| 
       817 
950 
     | 
    
         | 
| 
       818 
951 
     | 
    
         | 
| 
       819 
     | 
    
         
            -
            state  
     | 
| 
      
 952 
     | 
    
         
            +
            state 87
         
     | 
| 
       820 
953 
     | 
    
         | 
| 
       821 
     | 
    
         
            -
               
     | 
| 
      
 954 
     | 
    
         
            +
              31) proc_stmts : proc_stmts TERMIN proc_stmt _
         
     | 
| 
       822 
955 
     | 
    
         | 
| 
       823 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 956 
     | 
    
         
            +
              $default      reduce using rule 31 (proc_stmts)
         
     | 
| 
       824 
957 
     | 
    
         | 
| 
       825 
958 
     | 
    
         | 
| 
       826 
     | 
    
         
            -
            state  
     | 
| 
      
 959 
     | 
    
         
            +
            state 88
         
     | 
| 
       827 
960 
     | 
    
         | 
| 
       828 
     | 
    
         
            -
               
     | 
| 
      
 961 
     | 
    
         
            +
              36) proc_stmt_options : proc_stmt_options proc_primary _
         
     | 
| 
       829 
962 
     | 
    
         | 
| 
       830 
     | 
    
         
            -
              $default      reduce using rule  
     | 
| 
      
 963 
     | 
    
         
            +
              $default      reduce using rule 36 (proc_stmt_options)
         
     | 
| 
       831 
964 
     | 
    
         |