mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Fixes missing hover context issue
This commit is contained in:
parent
5193b7abf8
commit
3faf2cd3ab
1 changed files with 3 additions and 1 deletions
|
|
@ -781,7 +781,9 @@ class VSCodeMessageProcessor(ipcjson.SocketIO, ipcjson.IpcChannel):
|
|||
xml = untangle.parse(resp_args).xml
|
||||
xvar = xml.var
|
||||
|
||||
if args['context'] == 'hover' and xvar['isErrorOnEval'] == 'True':
|
||||
context = args.get('context', '')
|
||||
is_eval_error = xvar.get('isErrorOnEval', '')
|
||||
if context == 'hover' and is_eval_error =='True':
|
||||
self.send_response(
|
||||
request,
|
||||
result=None,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue