[ 
https://issues.apache.org/jira/browse/JEXL-262?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Henri Biestro closed JEXL-262.
------------------------------

> 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
>            Assignee: Henri Biestro
>            Priority: Minor
>             Fix For: 3.1
>
>
> 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';
> return i;
> {code}
> with something like
> {code}
> Address {City : 'NY', Street : '1st Avenue', House : '22'}
> {code}
> May be we could also consider a variant for array-style accessors, like
> {code}
> var i = Address;
> i["City"] = 'NY';
> i["Street"] = '1st Avenue';
> i["House"] = '22';
> return i
> {code}
> would be identical to
> {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
(v8.3.4#803005)

Reply via email to