summaryrefslogtreecommitdiff
path: root/src/format/mangling/dex/shorty_tok.l
blob: 92c264a061399457257c79ce19acbe8fda718eff (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

%{

#include "context.h"
#include "libformatmanglingdexshorty_la-shorty_gram.h"

%}


%option noyywrap
%option yylineno
%option nounput
%option noinput

%%

"V"                     { return V; }
"Z"                     { return Z; }
"B"                     { return B; }
"S"                     { return S; }
"C"                     { return C; }
"I"                     { return I; }
"J"                     { return J; }
"F"                     { return F; }
"D"                     { return D; }
"L"                     { return L; }

%%