Eolian/Lexer: the ';' is now optional after '}'.

This commit is contained in:
Daniel Zaoui 2014-02-16 11:15:32 +02:00
parent 7a114b18af
commit 4ec1ae2d0f
2 changed files with 744 additions and 627 deletions

File diff suppressed because it is too large Load Diff

View File

@ -355,7 +355,7 @@ _eo_tokenizer_implement_get(Eo_Tokenizer *toknz, char *p)
end_statement = ';';
begin_def = '{';
end_def = '}' end_statement;
end_def = '}' end_statement?;
begin_list = '(';
end_list = ')';
list_separator = ',';