132 lines
5.1 KiB
LLVM
132 lines
5.1 KiB
LLVM
|
%{
|
||
|
#define YY_NO_UNISTD_H
|
||
|
#define YY_USER_ACTION this->location.columns(yyleng);
|
||
|
|
||
|
#include <sstream>
|
||
|
#include "parser.hpp"
|
||
|
|
||
|
#undef YY_DECL
|
||
|
#define YY_DECL yy::parser::symbol_type elna::syntax::FooLexer::lex()
|
||
|
#define yyterminate() return yy::parser::make_YYEOF(this->location)
|
||
|
%}
|
||
|
|
||
|
%option c++ noyywrap never-interactive
|
||
|
%option yyclass="elna::syntax::FooLexer"
|
||
|
|
||
|
%%
|
||
|
%{
|
||
|
this->location.step();
|
||
|
%}
|
||
|
|
||
|
\-\-.* {
|
||
|
/* Skip the comment */
|
||
|
}
|
||
|
[\ \t\r] ; /* Skip the whitespaces */
|
||
|
\n+ {
|
||
|
this->location.lines(yyleng);
|
||
|
this->location.step();
|
||
|
}
|
||
|
if {
|
||
|
return yy::parser::make_IF(this->location);
|
||
|
}
|
||
|
then {
|
||
|
return yy::parser::make_THEN(this->location);
|
||
|
}
|
||
|
while {
|
||
|
return yy::parser::make_WHILE(this->location);
|
||
|
}
|
||
|
do {
|
||
|
return yy::parser::make_DO(this->location);
|
||
|
}
|
||
|
proc {
|
||
|
return yy::parser::make_PROCEDURE(this->location);
|
||
|
}
|
||
|
begin {
|
||
|
return yy::parser::make_BEGIN_BLOCK(this->location);
|
||
|
}
|
||
|
end {
|
||
|
return yy::parser::make_END_BLOCK(this->location);
|
||
|
}
|
||
|
const {
|
||
|
return yy::parser::make_CONST(this->location);
|
||
|
}
|
||
|
var {
|
||
|
return yy::parser::make_VAR(this->location);
|
||
|
}
|
||
|
True {
|
||
|
return yy::parser::make_BOOLEAN(true, this->location);
|
||
|
}
|
||
|
False {
|
||
|
return yy::parser::make_BOOLEAN(false, this->location);
|
||
|
}
|
||
|
[A-Za-z_][A-Za-z0-9_]* {
|
||
|
return yy::parser::make_IDENTIFIER(yytext, this->location);
|
||
|
}
|
||
|
[0-9]+ {
|
||
|
return yy::parser::make_NUMBER(strtol(yytext, NULL, 10), this->location);
|
||
|
}
|
||
|
\( {
|
||
|
return yy::parser::make_LEFT_PAREN(this->location);
|
||
|
}
|
||
|
\) {
|
||
|
return yy::parser::make_RIGHT_PAREN(this->location);
|
||
|
}
|
||
|
\>= {
|
||
|
return yy::parser::make_GREATER_EQUAL(this->location);
|
||
|
}
|
||
|
\<= {
|
||
|
return yy::parser::make_LESS_EQUAL(this->location);
|
||
|
}
|
||
|
\> {
|
||
|
return yy::parser::make_GREATER_THAN(this->location);
|
||
|
}
|
||
|
\< {
|
||
|
return yy::parser::make_LESS_THAN(this->location);
|
||
|
}
|
||
|
\/= {
|
||
|
return yy::parser::make_NOT_EQUAL(this->location);
|
||
|
}
|
||
|
= {
|
||
|
return yy::parser::make_EQUALS(this->location);
|
||
|
}
|
||
|
; {
|
||
|
return yy::parser::make_SEMICOLON(this->location);
|
||
|
}
|
||
|
\. {
|
||
|
return yy::parser::make_DOT(this->location);
|
||
|
}
|
||
|
, {
|
||
|
return yy::parser::make_COMMA(this->location);
|
||
|
}
|
||
|
\+ {
|
||
|
return yy::parser::make_PLUS(this->location);
|
||
|
}
|
||
|
\- {
|
||
|
return yy::parser::make_MINUS(this->location);
|
||
|
}
|
||
|
\* {
|
||
|
return yy::parser::make_MULTIPLICATION(this->location);
|
||
|
}
|
||
|
\/ {
|
||
|
return yy::parser::make_DIVISION(this->location);
|
||
|
}
|
||
|
:= {
|
||
|
return yy::parser::make_ASSIGNMENT(this->location);
|
||
|
}
|
||
|
: {
|
||
|
return yy::parser::make_COLON(this->location);
|
||
|
}
|
||
|
\^ {
|
||
|
return yy::parser::make_HAT(this->location);
|
||
|
}
|
||
|
@ {
|
||
|
return yy::parser::make_AT(this->location);
|
||
|
}
|
||
|
. {
|
||
|
std::stringstream ss;
|
||
|
|
||
|
ss << "Illegal character 0x" << std::hex << static_cast<unsigned char>(yytext[0]);
|
||
|
throw yy::parser::syntax_error(this->location, ss.str());
|
||
|
}
|
||
|
%%
|