]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/mathql/mQueryTLexer.mll
MathQL 1.3 ready for use
[helm.git] / helm / ocaml / mathql / mQueryTLexer.mll
index f677ef688e77c3edc2076bb2e9997f607766bddb..b5366af898dee5b67296527806844ece09eeeef7 100644 (file)
  * http://cs.unibo.it/helm/.
  *)
 
-(******************************************************************************)
-(*                                                                            *)
-(*                               PROJECT HELM                                 *)
-(*                                                                            *)
-(*                     Ferruccio Guidi <fguidi@cs.unibo.it>                   *)
-(*                                 23/05/2002                                 *)
-(*                                                                            *)
-(*                                                                            *)
-(******************************************************************************)
+(*
+ *)
 
 { 
    open MQueryTParser
@@ -71,39 +64,64 @@ and query_token = parse
    | '$'         { out "DL"; DL }
    | '.'         { out "FS"; FS }
    | ','         { out "CM"; CM }
+   | ';'         { out "SC"; SC }
    | '/'         { out "SL"; SL }
-   | "<-"        { out "GETS"  ; GETS   }
+   | "add"       { out "ADD"   ; ADD    }
+   | "align"     { out "ALIGN" ; ALIGN  }
+   | "allbut"    { out "BUT"   ; BUT    }
    | "and"       { out "AND"   ; AND    }
+   | "as"        { out "AS"    ; AS     }
    | "attr"      { out "ATTR"  ; ATTR   }
    | "be"        { out "BE"    ; BE     }
+   | "count"     { out "COUNT" ; COUNT  }
    | "diff"      { out "DIFF"  ; DIFF   }
+   | "distr"     { out "DISTR" ; DISTR  }
+   | "else"      { out "ELSE"  ; ELSE   }
+   | "empty"     { out "EMPTY" ; EMPTY  }
    | "eq"        { out "EQ"    ; EQ     }
    | "ex"        { out "EX"    ; EX     }
    | "false"     { out "FALSE" ; FALSE  }
-   | "fun"       { out "FUN"   ; FUN    }
+   | "for"       { out "FOR"   ; FOR    }
+   | "from"      { out "FROM"  ; FROM   }
+   | "if"        { out "IF"    ; IF     }
    | "in"        { out "IN"    ; IN     }
+   | "inf"       { out "INF"   ; INF    }   
    | "intersect" { out "INTER" ; INTER  }
-   | "inverse"   { out "INV"   ; INV    }
+   | "inverse"   { out "INV"   ; INV    }   
+   | "istrue"    { out "IST"   ; IST    }
+   | "isfalse"   { out "ISF"   ; ISF    }
+   | "keep"      { out "KEEP"  ; KEEP   }
+   | "le"        { out "LE"    ; LE     }
    | "let"       { out "LET"   ; LET    }
+   | "log"       { out "LOG"   ; LOG    }
+   | "lt"        { out "LT"    ; LT     }
+   | "main"      { out "MAIN"  ; MAIN   }
+   | "match"     { out "MATCH" ; MATCH  }
    | "meet"      { out "MEET"  ; MEET   }
    | "not"       { out "NOT"   ; NOT    }
+   | "of"        { out "OF"    ; OF     }
    | "or"        { out "OR"    ; OR     }
    | "pattern"   { out "PAT"   ; PAT    }
+   | "proj"      { out "PROJ"  ; PROJ   }
    | "property"  { out "PROP"  ; PROP   }
-   | "ref"       { out "REF"   ; REF    }
-   | "refof"     { out "REFOF" ; REFOF  }
-   | "relation"  { out "REL"   ; REL    }
    | "select"    { out "SELECT"; SELECT }
+   | "source"    { out "SOURCE"; SOURCE }
+   | "stat"      { out "STAT"  ; STAT   }
    | "sub"       { out "SUB"   ; SUB    }
+   | "subj"      { out "SUBJ"  ; SUBJ   }
+   | "sup"       { out "SUP"   ; SUP    }
    | "super"     { out "SUPER" ; SUPER  }
+   | "then"      { out "THEN"  ; THEN   }
    | "true"      { out "TRUE"  ; TRUE   }
    | "union"     { out "UNION" ; UNION  }
    | "where"     { out "WHERE" ; WHERE  }
+   | "xor"       { out "XOR"   ; XOR    }
    | IDEN        { let id = Lexing.lexeme lexbuf in 
                    out ("ID " ^ id); ID id }
    | eof         { out "EOF"   ; EOF    }
 and result_token = parse
    | SPC         { result_token lexbuf }
+   | "(*"        { comm_token lexbuf; result_token lexbuf }
    | '"'         { STR (qstr string_token lexbuf) }
    | '{'         { LC }
    | '}'         { RC }