%{ #include "automaton_lexer.yy.c" #include void yyerror(const char *s); %} %union{ double real; int integer; char* string; xbt_exp_label_t label; } %token NEVER %token IF %token FI %token IMPLIES %token GOTO %token AND %token OR %token NOT %token LEFT_PAR %token RIGHT_PAR %token CASE %token COLON %token SEMI_COLON %token CASE_TRUE %token LEFT_BRACE %token RIGHT_BRACE %token LITT_ENT %token LITT_CHAINE %token LITT_REEL %token ID %type