We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee1f96 commit 78e6c64Copy full SHA for 78e6c64
robotcode/language_server/robotframework/diagnostics/analyzer.py
@@ -137,7 +137,12 @@ async def _analyze_keyword_call(
137
138
try:
139
if result.arguments is not None:
140
- result.arguments.resolve([v.value for v in argument_tokens], None)
+ result.arguments.resolve(
141
+ [v.value for v in argument_tokens],
142
+ None,
143
+ resolve_variables_until=result.args_to_process,
144
+ resolve_named=not result.is_any_run_keyword(),
145
+ )
146
except (asyncio.CancelledError, SystemExit, KeyboardInterrupt):
147
raise
148
except BaseException as e:
0 commit comments