Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/engines/dbgp/dbgp-instance.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -443,10 +443,10 @@ class DbgpInstance extends DebugContext
type: variable.$.type
}

if variable.$.fullname?
datum.label = variable.$.fullname
else if variable.$.name?
if variable.$.name?
datum.label = variable.$.name
else if variable.$.fullname?
datum.label = variable.$.fullname

switch variable.$.type
when "string"
Expand Down