[INTERPRETER]

* BUG: Correctly read unknown properties.


git-svn-id: svn://localhost/gambas/trunk@4906 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2012-07-08 13:27:56 +00:00
parent 7a198731d2
commit a903da98f2

View file

@ -101,7 +101,7 @@ _PUSH_GENERIC:
if (class->special[SPEC_PROPERTY] != NO_SYMBOL)
{
EXEC_unknown_name = name;
if (EXEC_special(SPEC_PROPERTY, class, class->property_static ? NULL : object, 0, FALSE))
if (!EXEC_special(SPEC_PROPERTY, class, class->property_static ? NULL : object, 0, FALSE))
{
VALUE_conv_boolean(&SP[-1]);
SP--;