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 862f43c commit 2d50cd2Copy full SHA for 2d50cd2
fortls/__init__.py
@@ -157,10 +157,9 @@ def debug_workspace_symbols(args, server):
157
for symbol in results:
158
path = path_from_uri(symbol["location"]["uri"])
159
sline = symbol["location"]["range"]["start"]["line"]
160
+ parent = "null"
161
if "containerName" in symbol:
162
parent = symbol["containerName"]
- else:
163
- parent = "null"
164
print(
165
f" {parent}::{sline} symbol -> {symbol['name']:30} parent = "
166
f"{os.path.relpath(path, args.debug_rootpath)}"
0 commit comments