mirror of
https://github.com/neovim/neovim.git
synced 2025-11-03 09:14:24 +00:00
tests: Fix testlint errors
This commit is contained in:
@@ -898,4 +898,8 @@ describe('Expressions coloring support', function()
|
||||
={NUM:1}^ |
|
||||
]])
|
||||
end)
|
||||
-- FIXME: Test expr coloring when using -u NORC and -u NONE.
|
||||
-- FIXME: Test all highlight groups, using long expression.
|
||||
-- FIXME: Test different ways of triggering expression highlighting (:<C-r>=,
|
||||
-- i<C-r>=, :<C-\>e, "=).
|
||||
end)
|
||||
|
||||
@@ -376,8 +376,8 @@ local function format_string(fmt, ...)
|
||||
return args[i]
|
||||
end
|
||||
local ret = fmt:gsub('%%[0-9*]*%.?[0-9*]*[cdEefgGiouXxqsr%%]', function(match)
|
||||
local subfmt = match:gsub('%*', function(match)
|
||||
return getarg()
|
||||
local subfmt = match:gsub('%*', function()
|
||||
return tostring(getarg())
|
||||
end)
|
||||
local arg = nil
|
||||
if subfmt:sub(-1) ~= '%' then
|
||||
|
||||
@@ -791,7 +791,7 @@ local function kvi_new(ct)
|
||||
return kvi_init(ffi.new(ct))
|
||||
end
|
||||
|
||||
local function make_enum_conv_tab(lib, values, skip_pref, set_cb)
|
||||
local function make_enum_conv_tab(m, values, skip_pref, set_cb)
|
||||
child_call_once(function()
|
||||
local ret = {}
|
||||
for _, v in ipairs(values) do
|
||||
@@ -799,7 +799,7 @@ local function make_enum_conv_tab(lib, values, skip_pref, set_cb)
|
||||
if v:sub(1, #skip_pref) == skip_pref then
|
||||
str_v = v:sub(#skip_pref + 1)
|
||||
end
|
||||
ret[tonumber(lib[v])] = str_v
|
||||
ret[tonumber(m[v])] = str_v
|
||||
end
|
||||
set_cb(ret)
|
||||
end)
|
||||
@@ -837,7 +837,7 @@ local module = {
|
||||
child_cleanup_once = child_cleanup_once,
|
||||
sc = sc,
|
||||
conv_enum = conv_enum,
|
||||
array_size = array_sive,
|
||||
array_size = array_size,
|
||||
kvi_destroy = kvi_destroy,
|
||||
kvi_size = kvi_size,
|
||||
kvi_init = kvi_init,
|
||||
|
||||
@@ -10,7 +10,6 @@ local ffi = helpers.ffi
|
||||
local eq = helpers.eq
|
||||
|
||||
local conv_ccs = viml_helpers.conv_ccs
|
||||
local pline2lua = viml_helpers.pline2lua
|
||||
local new_pstate = viml_helpers.new_pstate
|
||||
local intchar2lua = viml_helpers.intchar2lua
|
||||
local conv_cmp_type = viml_helpers.conv_cmp_type
|
||||
@@ -183,7 +182,7 @@ describe('Expressions lexer', function()
|
||||
end
|
||||
local function simple_test(pstate_arg, exp_type, exp_len, exp)
|
||||
local pstate = new_pstate(pstate_arg)
|
||||
local exp = shallowcopy(exp)
|
||||
exp = shallowcopy(exp)
|
||||
exp.type = exp_type
|
||||
exp.len = exp_len or #(pstate_arg[0])
|
||||
exp.start = { col = 0, line = 0 }
|
||||
|
||||
@@ -14,7 +14,6 @@ local ffi = helpers.ffi
|
||||
local eq = helpers.eq
|
||||
|
||||
local conv_ccs = viml_helpers.conv_ccs
|
||||
local pline2lua = viml_helpers.pline2lua
|
||||
local new_pstate = viml_helpers.new_pstate
|
||||
local intchar2lua = viml_helpers.intchar2lua
|
||||
local conv_cmp_type = viml_helpers.conv_cmp_type
|
||||
@@ -174,10 +173,7 @@ local function eastnode2lua(pstate, eastnode, checked_nodes)
|
||||
ffi.string(eastnode.data.env.ident, eastnode.data.env.ident_len))
|
||||
end
|
||||
ret_str = typ .. ':' .. ret_str
|
||||
local can_simplify = true
|
||||
for k, v in pairs(ret) do
|
||||
can_simplify = false
|
||||
end
|
||||
local can_simplify = not ret.children
|
||||
if can_simplify then
|
||||
ret = ret_str
|
||||
else
|
||||
@@ -218,12 +214,11 @@ local function phl2lua(pstate)
|
||||
pstate, chunk.start, chunk.end_col - chunk.start.col, {
|
||||
group = ffi.string(chunk.group),
|
||||
})
|
||||
chunk_str = ('%s:%u:%u:%s'):format(
|
||||
ret[i + 1] = ('%s:%u:%u:%s'):format(
|
||||
chunk_tbl.group,
|
||||
chunk_tbl.start.line,
|
||||
chunk_tbl.start.col,
|
||||
chunk_tbl.str)
|
||||
ret[i + 1] = chunk_str
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
@@ -5,7 +5,6 @@ local cimport = helpers.cimport
|
||||
local kvi_new = helpers.kvi_new
|
||||
local kvi_init = helpers.kvi_init
|
||||
local conv_enum = helpers.conv_enum
|
||||
local child_call_once = helpers.child_call_once
|
||||
local make_enum_conv_tab = helpers.make_enum_conv_tab
|
||||
|
||||
local lib = cimport('./src/nvim/viml/parser/expressions.h')
|
||||
@@ -33,11 +32,6 @@ local function new_pstate(strings)
|
||||
ret_pline.size = size
|
||||
ret_pline.allocated = false
|
||||
end
|
||||
local pline_init = {
|
||||
data = nil,
|
||||
size = 0,
|
||||
allocated = false,
|
||||
}
|
||||
local state = {
|
||||
reader = {
|
||||
get_line = get_line,
|
||||
|
||||
Reference in New Issue
Block a user