Hello.
In C#/C++ last comma in initialization list is ignored and not influence on size of array, if after it placed empty field.
I think it is good feature and can be implemented in AngelScript too.
dictionary a =
{
{ "a", 1 },
{ "b", 2 },
{ "c", 3 }, // Error on this comma for now, but will be OK after changes
};