mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
test/helpers: Support booleans
This commit is contained in:
parent
aa728798b4
commit
920c582320
@ -469,6 +469,8 @@ format_luav = function(v, indent, opts)
|
||||
end
|
||||
elseif type(v) == 'nil' then
|
||||
ret = 'nil'
|
||||
elseif type(v) == 'boolean' then
|
||||
ret = (v and 'true' or 'false')
|
||||
else
|
||||
print(type(v))
|
||||
-- Not implemented yet
|
||||
|
Loading…
Reference in New Issue
Block a user