Don't assume Italian accented characters are available.

This commit is contained in:
Alessandro Gatti 2014-11-29 23:37:28 +01:00 committed by Stefano Sanfilippo
parent 8913c12a7f
commit e9be8b4419

View File

@ -93,7 +93,7 @@ CHAR [a-zA-Z_]
("il"|"lo"|"la"|"l'"|"i"|"gli"|"le"|"un"|"un'"|"una"|"dei"|"delle") { ("il"|"lo"|"la"|"l'"|"i"|"gli"|"le"|"un"|"un'"|"una"|"dei"|"delle") {
return token::ARTICLE; return token::ARTICLE;
} }
"più" { "pi"("ù"|"u`") {
return token::OP_PLUS; return token::OP_PLUS;
} }
"meno" { "meno" {
@ -147,7 +147,7 @@ CHAR [a-zA-Z_]
"e "("b"|"p")"rematura anche, se" { "e "("b"|"p")"rematura anche, se" {
return token::LOOP_CONDITION; return token::LOOP_CONDITION;
} }
"che cos'è" { "che cos'"("è"|"e`") {
return token::BRANCH_CONDITION; return token::BRANCH_CONDITION;
} }
"?" { "?" {
@ -156,7 +156,7 @@ CHAR [a-zA-Z_]
"o tarapia tapioco" { "o tarapia tapioco" {
return token::BRANCH_ELSE; return token::BRANCH_ELSE;
} }
"e velocità di esecuzione" { "e velocit"("à"|"a`")" di esecuzione" {
return token::BRANCH_END; return token::BRANCH_END;
} }
":" { ":" {