You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Dmitri Blinov (JIRA)" <ji...@apache.org> on 2018/05/23 08:44:00 UTC

[jira] [Created] (JEXL-262) Inline object property initialization construct

Dmitri Blinov created JEXL-262:
----------------------------------

             Summary: Inline object property initialization construct
                 Key: JEXL-262
                 URL: https://issues.apache.org/jira/browse/JEXL-262
             Project: Commons JEXL
          Issue Type: New Feature
    Affects Versions: 3.1
            Reporter: Dmitri Blinov


I wonder is it possible (not difficult) to implement in Jexl a construct that would allow us to initialize object properties in one statement, so that it would be possible to replace the code like
{code}
var i = Address
i.City = 'NY';
i.Street = '1st Avenue';
i.House = '22';
{code}
with something like
{code}
Address {City : 'NY', Street : '1st Avenue', House : '22'}
{code}
I think this is somewhat similar to inline map initialization syntax, which is proved to be very useful and productive, so it would be nice to have such a feature for common objects too



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)