Changes between Version 8 and Version 9 of Taskforces/FCS/FCS-QL


Ignore:
Timestamp:
11/02/15 15:28:00 (9 years ago)
Author:
Leif-Jöran
Comment:

Integrating 2v2 and 3v2 and 11v2 and 12v2 from Peter B's suggestion to remove structural ambiguity

Legend:

Unmodified
Added
Removed
Modified
  • Taskforces/FCS/FCS-QL

    v8 v9  
    1414                            | main-query quantifier         /* quatification */         
    1515
     16 [2.11] main-query           ::= simple-query
     17                            | simple-query "|" main-query     /* or */
     18                            | simple-query main-query         /* sequence */
     19                            | simple-query quantifier         /* quatification */
     20       
    1621 [3] simple-query         ::= implicit-query
    17                             | segment-query     
     22                            | segment-query     
     23 
     24 [3.11] simple-query         ::= '(' main_query ')'
     25                            | implicit-query
     26                            | segment-query     
    1827 
    1928 [4] implicit-query       ::= flagged-regexp     
     
    4251                            | "!" expression                /* not */   
    4352
     53[11.11] expression           ::= basic-expression
     54                            | expression "|" expression     /* or */
     55                            | expression "&" expression     /* and */
     56                               
     57
    4458[12] basic-expression     ::= attribute operator flagged-regexp         
     59
     60[12.11] basic-expression     ::= '(' expression ')'         /* grouping */
     61                            | "!" expression                /* not */
     62                            | attribute operator flagged-regexp
    4563
    4664[13] operator             ::= "="                           /* equals */