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 a99f663 commit 3099762Copy full SHA for 3099762
commands/FBDebugCommands.py
@@ -391,6 +391,10 @@ def description(self):
391
def run(self, arguments, options):
392
# This command is like `expression --synthetic-type false`, except only showing nested heap references.
393
var = self.context.frame.var(arguments[0])
394
+ if not var or not var.IsValid():
395
+ self.result.SetError('No variable named "{}"'.format(arguments[0]))
396
+ return
397
+
398
# Use the actual underlying structure of the variable, not the human friendly (synthetic) one.
399
root = var.GetNonSyntheticValue()
400
0 commit comments