<div dir="ltr"><div dir="ltr"><div>I don't think this "<span class="gmail-m_1255492941143361072gmail-im">PROPERTY MyProperty As String TO sVar</span>" is unrelated to the issue. I use public variables exactly as I would use properties, but without need of setters & getters, where they really aren't needed.</div><div>And this is the reason:</div><div><br></div><div>First the code was this one line:</div><div>Public y As New TestClass1<br></div><div><br></div><div>Now this is the functionally equivalent code:</div><div>Property y As TestClass1<br>Private $y As New TestClass1<br><br>Private Function y_Read() As TestClass1<br>  Return $y<br>End<br><br>Private Sub y_Write(Value As TestClass1)<br>  $y = Value<br>End<br></div><div><br></div><div>Things didn't get simpler, less bug prone, efficient, etc, only much longer. You really don't see any use for the shorter option? Even as the syntactic sugar?<br></div><div><br></div><div><br></div><div>Jussi<br></div><div><br></div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Oct 8, 2018 at 5:45 PM Benoît Minisini <<a href="mailto:g4mba5@gmail.com" target="_blank">g4mba5@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Le 03/10/2018 à 14:25, Jussi Lahtinen a écrit :<br>
> There is the "null object" error, which happens only when JIT is <br>
> enabled. See the attachment.<br>
> <br>
> Jussi<br>
> <br>
<br>
This should be fixed in the last commit.<br>
<br>
-- <br>
Benoît Minisini<br>
<br>
----[ Gambas mailing-list is hosted by <a href="https://www.hostsharing.net" rel="noreferrer" target="_blank">https://www.hostsharing.net</a> ]----<br>
</blockquote></div>