summaryrefslogtreecommitdiff
path: root/test/code_action
diff options
context:
space:
mode:
Diffstat (limited to 'test/code_action')
-rw-r--r--test/code_action/init.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/code_action/init.lua b/test/code_action/init.lua
index 01423850..67528d59 100644
--- a/test/code_action/init.lua
+++ b/test/code_action/init.lua
@@ -113,6 +113,36 @@ return function(<?a?>, b, c) end
},
}
+TEST [[
+f = function (<?a?>, b) end
+]]
+{
+ {
+ title = lang.script('ACTION_SWAP_PARAMS', {
+ node = 'f',
+ index = 2,
+ }),
+ kind = 'refactor.rewrite',
+ edit = EXISTS,
+ },
+}
+
+TEST [[
+local t = {
+ f = function (<?a?>, b) end
+}
+]]
+{
+ {
+ title = lang.script('ACTION_SWAP_PARAMS', {
+ node = 'f',
+ index = 2,
+ }),
+ kind = 'refactor.rewrite',
+ edit = EXISTS,
+ },
+}
+
--TEST [[
--<?print(1)
--print(2)?>