[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.modeling.gmt] Re: [Epsilon] String wrapping under -> and .

Hi Aleksander,

Could you please open a bug report for this? I'll investigate asap and get back to you.

Cheers,
Dimitrios

Aleksander Bandelj wrote:
There is a strange difference how PointExecutor and ArrowExecutor treat Strings. For example:

var colorNames:=Sequence {'white', 'green', 'yellow', 'orange', 'red'};

colorNames->indexOf('red').println(); -- Java String, identity comparison, prints -1
colorNames.indexOf('red').println(); -- EOLString, equality comparison, prints 4



-a