Minor cleanups to lexer.
This commit is contained in:
parent
88e78be419
commit
60136fc4e9
|
@ -6,7 +6,7 @@
|
||||||
extern int lineNumber;
|
extern int lineNumber;
|
||||||
|
|
||||||
void monicelli_error(const char *);
|
void monicelli_error(const char *);
|
||||||
void monicelli_meta(const char *); // Extern void serve?
|
void monicelli_meta(const char *);
|
||||||
|
|
||||||
using namespace monicelli;
|
using namespace monicelli;
|
||||||
%}
|
%}
|
||||||
|
@ -174,7 +174,7 @@ CHAR [a-zA-Z_]
|
||||||
<INITIAL,shift>. {
|
<INITIAL,shift>. {
|
||||||
monicelli_error("Unexpected token");
|
monicelli_error("Unexpected token");
|
||||||
return -1;
|
return -1;
|
||||||
};
|
}
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user