summaryrefslogtreecommitdiff
path: root/src/format/mangling/dex/shorty_tok.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/mangling/dex/shorty_tok.l')
-rw-r--r--src/format/mangling/dex/shorty_tok.l28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/format/mangling/dex/shorty_tok.l b/src/format/mangling/dex/shorty_tok.l
new file mode 100644
index 0000000..92c264a
--- /dev/null
+++ b/src/format/mangling/dex/shorty_tok.l
@@ -0,0 +1,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; }
+
+%%