I have a class with where I define a propery:
The ide doesn't say anything if I have a like this:
And if I hover over x.GetMyProperty it sais: getMyProperty As Boolean
It runs correctly but I think at least a warning is to be shown by the ide ...
B4X:
Public Sub getMyProperty() As Boolean
Return True
End Sub
Public Sub setMyProperty(Prop As Boolean)
cMyProperty = Prop
End Sub
The ide doesn't say anything if I have a like this:
B4X:
Dim x as MyClass
Log(x.GetMyProperty)
It runs correctly but I think at least a warning is to be shown by the ide ...