diff options
author | fesily <fesil@foxmail.com> | 2024-01-17 19:28:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-17 19:28:26 +0800 |
commit | dd49a6dd6afc35a14fba3b675a2d9f1ee2bb7ca4 (patch) | |
tree | c338f21a68e1efc2b86c4746cdd81ff5892c6431 /test/diagnostics/redundant-parameter.lua | |
parent | 326a033a816f0bd5dcca6aeea1443935ee5a9e3c (diff) | |
parent | 34319c7990cba47ddc00e77aabfccbb923f84e26 (diff) | |
download | lua-language-server-dd49a6dd6afc35a14fba3b675a2d9f1ee2bb7ca4.zip |
Merge branch 'master' into plugin-OnNodeCompileFunctionParam
Diffstat (limited to 'test/diagnostics/redundant-parameter.lua')
-rw-r--r-- | test/diagnostics/redundant-parameter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/diagnostics/redundant-parameter.lua b/test/diagnostics/redundant-parameter.lua index fabe3340..520a6381 100644 --- a/test/diagnostics/redundant-parameter.lua +++ b/test/diagnostics/redundant-parameter.lua @@ -94,7 +94,7 @@ print(1, 2, 3, 4, 5) TEST [[ local function f(callback) - callback(1, 2, 3) + callback(<!1!>, <!2!>, <!3!>) end f(function () end) ]] |