This revision was automatically updated to reflect the committed changes.
Closed by commit rGc832e82cd9d8: [lldb-vscode] disable completions (authored by
Walter Erquinigo ).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74264/new/
wallace added a comment.
> These completion requests are also expected to be asynchronous right? Do we
> have any support for this right now? Currently we will deadlock in
> lldb-vscode handling the current completion until it completes right? To
> properly handle completion, we will need to be
clayborg added a comment.
These completion requests are also expected to be asynchronous right? Do we
have any support for this right now? Currently we will deadlock in lldb-vscode
handling the current completion until it completes right? To properly handle
completion, we will need to be able t
wallace created this revision.
wallace added a reviewer: clayborg.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Completion requests are causing some problems in the debugger, which is
explained in the comment in the code.
I'm disabling it for now until we have time to do