eolian: require semicolon after get/set in new property impl syntax

This commit is contained in:
Daniel Kolesa 2016-12-27 16:05:22 +01:00
parent 3df48e281e
commit d48baf533f
1 changed files with 2 additions and 0 deletions

View File

@ -1624,11 +1624,13 @@ fullclass:
CASE_LOCK(ls, get, "get specifier");
eo_lexer_get(ls);
impl->is_prop_get = EINA_TRUE;
check_next(ls, ';');
break;
case KW_set:
CASE_LOCK(ls, set, "set specifier");
eo_lexer_get(ls);
impl->is_prop_set = EINA_TRUE;
check_next(ls, ';');
break;
default:
goto propend;