I want to do the following:
someProperty = myFunction().someFunction().someOtherFunction()
howver the last part is called a lot of times, in different sub classes so I made it like so:
class:
class Wheelies {
property0 = someFunction().someOtherFunction()
}
And I want to call getWheels in a sub class, like so, however this does not work:
class Car extends Wheelies {
property1 = myFunction().this.getwheels
}
Can you please guys help me, my question is that I don't know why doesn't it work neither do I know how should I do it.