q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=65ea735fd7d32aeeffb2380aa9442a010d6d439e
commit 65ea735fd7d32aeeffb2380aa9442a010d6d439e Author: Daniel Kolesa <[email protected]> Date: Fri Dec 22 15:29:23 2017 +0100 eolian: remove the toplevel information --- src/lib/eolian/eo_parser.c | 2 -- src/lib/eolian/eolian_database.h | 1 - 2 files changed, 3 deletions(-) diff --git a/src/lib/eolian/eo_parser.c b/src/lib/eolian/eo_parser.c index f9f3c51e67..08b8900016 100644 --- a/src/lib/eolian/eo_parser.c +++ b/src/lib/eolian/eo_parser.c @@ -2056,7 +2056,6 @@ _inherit_dep(Eo_Lexer *ls, Eina_Strbuf *buf) return; } ls->tmp.kls->inherits = eina_list_append(ls->tmp.kls->inherits, dep); - dep->toplevel = EINA_FALSE; eo_lexer_context_pop(ls); } @@ -2070,7 +2069,6 @@ parse_class(Eo_Lexer *ls, Eolian_Class_Type type) int line, col; Eina_Strbuf *buf = push_strbuf(ls); ls->tmp.kls = calloc(1, sizeof(Eolian_Class)); - ls->tmp.kls->toplevel = EINA_TRUE; FILL_BASE(ls->tmp.kls->base, ls, ls->line_number, ls->column); eo_lexer_get(ls); ls->tmp.kls->type = type; diff --git a/src/lib/eolian/eolian_database.h b/src/lib/eolian/eolian_database.h index e7e75393a4..f68093df3b 100644 --- a/src/lib/eolian/eolian_database.h +++ b/src/lib/eolian/eolian_database.h @@ -123,7 +123,6 @@ struct _Eolian_Class Eina_List *parts; /* Eolian_Part */ Eina_Bool class_ctor_enable:1; Eina_Bool class_dtor_enable:1; - Eina_Bool toplevel:1; }; struct _Eolian_Function --
