Files
openide/python/python-psi-impl
Artem Ivanovandintellij-monorepo-bot 19a5c6396e PY-63306 Add PSI stubs for target expressions that reference annotated parameters
Stubs were not generated for target expressions in cases like this:
```
class A:
    number: int

def f(x: A):
    x.number = 123
```

Fix: Now, when we create stubs for target expressions inside functions, we compare the name of the function parameter rather than parameter's getText()

GitOrigin-RevId: 5af67f3c98b776a21813b61eec9533d7c726b9bb
2025-09-09 23:21:44 +00:00
..