| [news.eclipse.modeling.gmt] Re: [Epsilon] String wrapping under -> and . |
Hi Aleksander,
Cheers, Dimitrios
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