CompoundExpression
omits null-safe syntax in AST string representation of null-safe selection/projection in SpEL
#32515
Labels
Milestone
The AST string representations of the following SpEL expressions currently omit the null-safe navigation operator (
?.
) that was present in the original expression.{1,2,3}?.![#isEven()]
-->{1,2,3}.![#isEven()]
{1,2,3}?.?[#isEven(#this)]
-->{1,2,3}.?[#isEven(#this)]
{1,2,3}?.^[#isEven(#this)]
-->{1,2,3}.^[#isEven(#this)]
{1,2,3}?.$[#isEven(#this)]
-->{1,2,3}.$[#isEven(#this)]
The text was updated successfully, but these errors were encountered: