|
|
|
|
|
by thaumasiotes
1753 days ago
|
|
> In any other scripting language I've worked on you can do some test on a reference to see if its null or doesn't exist. Except - and this is called out in the github thread - the reference is not null and does exist. The check is working correctly. The problem lies in the fact that what you want to check for is "is the object I originally pointed to still around?", but instead of doing that, you're checking "is the thing I'm pointing to currently a valid object?". |
|