diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-12-07 08:01:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 08:01:27 -0800 |
commit | b2d471ab337e56f660eb7c89ae24f447f7b7a165 (patch) | |
tree | abe7805ed1c92d21d146c07c41b57b489da19a5b /src/nvim/api/options.c | |
parent | 4a34da82c18e6da1e46d6bf3d21082a6b6c8b947 (diff) | |
download | rneovim-b2d471ab337e56f660eb7c89ae24f447f7b7a165.tar.gz rneovim-b2d471ab337e56f660eb7c89ae24f447f7b7a165.tar.bz2 rneovim-b2d471ab337e56f660eb7c89ae24f447f7b7a165.zip |
fix(lua): allow nil values in serialized Lua arrays (#26329)
When we convert a Lua table to an Object, we consider the table a
"dictionary" if it contains only string keys, and an array if it
contains all numeric indices with no gaps. While rare, Lua tables can
have both strictly numeric indices and gaps (e.g. { [2] = 2 }). These
currently cannot be serialized because it is not considered an array.
However, we know the maximum index of the table and as long as all of
the keys in the table are numeric, it is still possible to serialize
this table as an array. The missing indices will have nil values.
Diffstat (limited to 'src/nvim/api/options.c')
0 files changed, 0 insertions, 0 deletions