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 b1653b8 commit 77bc3a9Copy full SHA for 77bc3a9
robotcode/language_server/robotframework/parts/references.py
@@ -699,7 +699,9 @@ async def references_LibraryImport( # noqa: N802
699
return None
700
701
if position in range_from_token(name_token):
702
- library_doc = await namespace.get_imported_library_libdoc(import_node.name, import_node.args)
+ library_doc = await namespace.get_imported_library_libdoc(
703
+ import_node.name, import_node.args, import_node.alias
704
+ )
705
706
if library_doc is None:
707
0 commit comments