Details
Assignee
Michael OffnerMichael OffnerReporter
Alexander KwaschnyAlexander KwaschnyPriority
MinorLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Alexander Kwaschny
Alexander KwaschnyPriority
Labels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Created 25 November 2019 at 21:21
Updated 19 May 2021 at 11:55
Having null support enabled, comparing a complex value against
null
throws an ExpressionException when using the non-typesafe operator==
. Using the typesafe operator===
works as there is no attempt to cast the complex value.s = {}; structIsNull = (s == null); // throws ExpressionException: Can't cast Complex Object Type Struct to String structIsNull = (s === null); // works
This is an unexpected behavior and casting to String seems to indicate an improper fallback.
I would have expected it to work like Javascript:
This bug is possible related to https://luceeserver.atlassian.net/browse/LDEV-2498#icft=LDEV-2498.