summaryrefslogtreecommitdiff
path: root/src/format/mangling/java_tok.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/mangling/java_tok.l')
-rw-r--r--src/format/mangling/java_tok.l8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/format/mangling/java_tok.l b/src/format/mangling/java_tok.l
index 06777f9..c19cd04 100644
--- a/src/format/mangling/java_tok.l
+++ b/src/format/mangling/java_tok.l
@@ -23,11 +23,11 @@ I { return I; }
J { return J; }
F { return F; }
D { return D; }
-L { printf("Got 'L'\n"); BEGIN(string); return L; }
-<string>[/] { printf("Got '/'\n"); return SLASH; }
-<string>[$] { printf("Got '$'\n"); return DOLLAR; }
+L { BEGIN(string); return L; }
+<string>[/] { return SLASH; }
+<string>[$] { return DOLLAR; }
<string>[;] { BEGIN(INITIAL); return SEMICOLON; }
-<string>[A-Za-z0-9]* { java_lval.text = yytext; printf("Got text:'%s'\n", yytext); return TEXT; }
+<string>[A-Za-z0-9]* { java_lval.text = yytext; return TEXT; }
%%