summaryrefslogtreecommitdiff
path: root/tools/d2c/pattern/tokens.l
blob: bef1e44948659072ba469793769c4766dafad28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

%top {

#include "grammar.h"

}


%option noyywrap
%option nounput
%option noinput
%option yylineno
%option stack
%option noyy_top_state
%option noyy_push_state
%option noyy_pop_state


%%


[ \t]  { }

[^ ]+  { yylvalp->string = strdup(yytext); return OPERAND; }

.      {
           char *msg;
           asprintf(&msg, "Unhandled token in d2c pattern block: '%s'", yytext);
           YY_FATAL_ERROR(msg);
           free(msg);
       }


%%