Get rid of gen_fields_tbl.fields_count
gen_fields_tbl.fields_count
This data is redundant because the shape already contains both the length and capacity of the object's fields.
So it both waste space and create the possibility of a desync between the two.
We also do not need to initialize everything to Qundef, this seem to be a left-over from pre-shape instance variables.
Get rid of
gen_fields_tbl.fields_count
This data is redundant because the shape already contains both the
length and capacity of the object's fields.
So it both waste space and create the possibility of a desync between
the two.
We also do not need to initialize everything to Qundef, this seem
to be a left-over from pre-shape instance variables.