Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b7dd1446 authored by Jean-Christophe Filliâtre's avatar Jean-Christophe Filliâtre
Browse files

token UNDERSCORE

parent e06b2459
No related branches found
No related tags found
No related merge requests found
......@@ -146,6 +146,8 @@ rule token = parse
{ newline lexbuf; token lexbuf }
| space+
{ token lexbuf }
| '_'
{ UNDERSCORE }
| lident as id
{ try Hashtbl.find keywords id with Not_found -> LIDENT id }
| uident as id
......
......@@ -101,7 +101,8 @@
%token QUOTE RAISE RAISES READS REAL REC REF RETURNS RIGHTB RIGHTBRIGHTB
%token RIGHTPAR RIGHTSQ
%token SEMICOLON SLASH
%token THEN THEORY TIMES TRUE TRY TYPE UNIT USES VARIANT VOID WHILE WITH WRITES
%token THEN THEORY TIMES TRUE TRY TYPE UNDERSCORE
%token UNIT USES VARIANT VOID WHILE WITH WRITES
/* Precedences */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment