schema CHANGE remove LYEXT_PARENT duplicating ly_stmt
Removing the enumeration also leads to simplify the extension instance
structure where was the information about the parent structure duplicated.
diff --git a/src/parser_yin.c b/src/parser_yin.c
index 24ed410..5c9ae31 100644
--- a/src/parser_yin.c
+++ b/src/parser_yin.c
@@ -3172,8 +3172,8 @@
LY_CHECK_RET(ly_store_prefix_data(ctx->xmlctx->ctx, e->name, strlen(e->name), LY_PREF_XML, &ctx->xmlctx->ns,
&e->format, &e->prefix_data));
- e->insubstmt = subelem;
- e->insubstmt_index = subelem_index;
+ e->parent_stmt = subelem;
+ e->parent_stmt_index = subelem_index;
LY_CHECK_RET(lyxml_ctx_next(ctx->xmlctx));