Skip to content

Commit 17123a0

Browse files
committed
feat(analyzer): support for converting resolvable variables with types
1 parent 35526a0 commit 17123a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/robot/src/robotcode/robot/diagnostics/namespace.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,15 +1148,15 @@ def get_resolvable_variables(
11481148
) -> Dict[str, Any]:
11491149
if nodes:
11501150
return {
1151-
v.name: v.value
1151+
v.full_name: v.value
11521152
for k, v in self.yield_variables(nodes, position, skip_commandline_variables=True)
11531153
if v.has_value
11541154
}
11551155

11561156
with self._global_resolvable_variables_lock:
11571157
if self._global_resolvable_variables is None:
11581158
self._global_resolvable_variables = {
1159-
v.name: v.value
1159+
v.full_name: v.value
11601160
for k, v in self.yield_variables(nodes, position, skip_commandline_variables=True)
11611161
if v.has_value
11621162
}

0 commit comments

Comments
 (0)