* ngenutil.tnodeutils.sym_maybe_initialize: don't use "is" operator, but corresponding is_* functions

git-svn-id: trunk@36617 -
This commit is contained in:
svenbarth 2017-06-29 18:51:35 +00:00
parent 6006c6a8bd
commit a301bf75ea

View File

@ -328,11 +328,8 @@ implementation
which might contain record with management operators }
((tsym(p).typ = staticvarsym) and
(
(tabstractvarsym(p).vardef is trecorddef) or
(
(tabstractvarsym(p).vardef is tobjectdef) and
(tobjectdef(tabstractvarsym(p).vardef).objecttype = odt_object)
)
is_record(tabstractvarsym(p).vardef) or
is_object(tabstractvarsym(p).vardef)
)
)
) and