Goto chaining class field does not work
Opened this issue · 0 comments
rudolf101 commented
Description
Goto chaining class field does not work
To Reproduce
Steps to reproduce the behavior:
- Run Visual Studio Code extension.
- Write this code:
class People:
def __init__(self, name, age, car):
self.name = name
self.age = age
self.car = car
class Car:
def __init__(self, price, condition):
self.price = price
self.condition = condition
guy = People("Name", 100, Car(1000, "Good"))
print(guy.name, guy.age, guy.car.price, guy.car.condition)
- Use goto onto
condition
field inguy.car.condition
Expected behavior
Go to condition
field of Car
class
Actual behavior
Nothing
Visual proofs (screenshots, logs, images)
Goto class field
Goto chaining class field does not work
Environment
OS: Windows 11 Pro 21H2
JDK: Amazon Coretto 18.0.2
Intellij IDEA: Build #IU-221.5921.22
Visual Studio Code: v1.70.1