q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=d48baf533f9293c5a771b6f4bb69a2262a7b7b21
commit d48baf533f9293c5a771b6f4bb69a2262a7b7b21 Author: Daniel Kolesa <[email protected]> Date: Tue Dec 27 16:05:22 2016 +0100 eolian: require semicolon after get/set in new property impl syntax --- src/lib/eolian/eo_parser.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/eolian/eo_parser.c b/src/lib/eolian/eo_parser.c index f53ad36..62beee4 100644 --- a/src/lib/eolian/eo_parser.c +++ b/src/lib/eolian/eo_parser.c @@ -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; --
