File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -698,7 +698,7 @@ DEBUG-SESSION is the debug session triggering the event."
698698 (funcall
699699 callback
700700 (-map
701- (-lambda ((stack-frame &as &hash " name" " line" " source" ))
701+ (-lambda ((stack-frame &as &hash " name" " line" " source" " instructionPointerReference " ))
702702 (let* ((current-session (dap--cur-session))
703703 (icon (if (and
704704 (equal session current-session)
@@ -731,6 +731,9 @@ DEBUG-SESSION is the debug session triggering the event."
731731 (gethash " name" ))))
732732 'dap-ui-sessions-thread-active-face
733733 'dap-ui-sessions-thread-face ))
734+ (if instructionPointerReference
735+ (propertize (format " [%s ] " instructionPointerReference) 'face 'dap-ui-sessions-thread-face )
736+ " " )
734737 (propertize (format " (%s :%s ) " (or (gethash " name" source )
735738 (gethash " path" source ))
736739 line)
You can’t perform that action at this time.
0 commit comments