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 f592add commit a8f3bbcCopy full SHA for a8f3bbc
robotcode/language_server/robotframework/parts/model_helper.py
@@ -376,6 +376,17 @@ async def iter_token(
376
return_not_found=return_not_found,
377
):
378
yield v
379
+ elif base == "" and return_not_found:
380
+ yield sub_token, VariableNotFoundDefinition(
381
+ sub_token.lineno,
382
+ sub_token.col_offset,
383
384
+ sub_token.end_col_offset,
385
+ namespace.source,
386
+ sub_token.value,
387
+ sub_token,
388
+ )
389
+ return
390
391
if contains_variable(base, "$@&%"):
392
async for sub_token_or_var in iter_token(
0 commit comments