diff options
Diffstat (limited to 'script/core')
-rw-r--r-- | script/core/diagnostics/redundant-parameter.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/script/core/diagnostics/redundant-parameter.lua b/script/core/diagnostics/redundant-parameter.lua index b25ec77a..8176f0af 100644 --- a/script/core/diagnostics/redundant-parameter.lua +++ b/script/core/diagnostics/redundant-parameter.lua @@ -74,6 +74,10 @@ return function (uri, callback) local cache = vm.getCache 'redundant-parameter' guide.eachSourceType(ast.ast, 'call', function (source) + -- parameters be expanded by iterator + if source.node.iterator then + return + end local callArgs = countCallArgs(source) if callArgs == 0 then return |