[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,

Thanks for reporting this! I've located the bug and fixed it in the CVS. We'll release the next version (1.3.4) and close the bug report (https://bugs.eclipse.org/bugs/show_bug.cgi?id=232457) shortly.

Cheers,
Dimitrios

Dimitrios Kolovos wrote:
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