From: Jérémie Astor Date: Tue, 31 Aug 2021 19:51:15 +0000 (+0200) Subject: :art: Array ast is NoOp X-Git-Tag: nightly~470^2~28 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=30b737f83a7a2145df1a7af00f54fc3d8119bced;p=gwion.git :art: Array ast is NoOp --- diff --git a/src/lib/array.c b/src/lib/array.c index 53615752..cfcd990b 100644 --- a/src/lib/array.c +++ b/src/lib/array.c @@ -826,7 +826,8 @@ GWION_IMPORT(array) { GWI_BB(gwi_oper_add(gwi, opck_array_at)) GWI_BB(gwi_oper_end(gwi, "=>", NULL)) GWI_BB(gwi_oper_add(gwi, opck_array_implicit)) - GWI_BB(gwi_oper_end(gwi, "@implicit", NULL)) +// GWI_BB(gwi_oper_end(gwi, "@implicit", NULL)) + GWI_BB(gwi_oper_end(gwi, "@implicit", eNoOp)) GWI_BB(gwi_oper_ini(gwi, "@Array", (m_str)OP_ANY_TYPE, NULL)) GWI_BB(gwi_oper_add(gwi, opck_array_sl)) GWI_BB(gwi_oper_emi(gwi, opem_array_sl))