forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
area-debuggingfeature-requestRequest for new features or functionalityRequest for new features or functionality
Description
Is your feature request related to a problem? Please describe.
At the moment suggestion completions for debug breakpoint expressions are quite limited. As far as I can tell those only work for the first word (on a module level). A common simplified use case, at least for me, is the following example
class Test:
var: int = 42
def main():
# set breakpoint here
...
If I want to debug main
for a specific value, I would set the breakpoint condition to
Test.var == 42
Describe the solution you'd like
It would be nice if pyright could support at least MemberAccess completions, since those are the most common.
Metadata
Metadata
Assignees
Labels
area-debuggingfeature-requestRequest for new features or functionalityRequest for new features or functionality