Epsilon is a family of Java-based scripting languages for automating common model-based software engineering tasks, such as code generation, model-to-model transformation and model validation, that work out of the box with EMF (including Xtext and Sirius), UML (including Cameo/MagicDraw), Simulink, XML and other types of models.
so a very interesting issue showed up today for me with the following code:
var test = Map{"a" = 1, "b" = 2};
test["a"].println();
I got the following error EolMap {a=1, b=2} is not a collection or a map.
So the error is definitely wrong, because EolMap is a map, but the question is more is the following syntax allowed: test["a"] ?
so a very interesting issue showed up today for me with the following code:
I got the following error
EolMap {a=1, b=2} is not a collection or a map.
So the error is definitely wrong, because EolMap is a map, but the question is more is the following syntax allowed:test["a"]
?