eagler-teavm-fork/core
Alexey Andreev 9cf21825fc Fix wrong evaluation when optimizer sees array initialization that looks like array initializer expression, but has access to array variable on its elements, i.e. on a case like this:
Object[] array = new Object[1];
array[0] = array;

That can't be optimized to

Object[] array = new Object[] { array };
2020-06-16 19:24:45 +03:00
..
src Fix wrong evaluation when optimizer sees array initialization that looks like array initializer expression, but has access to array variable on its elements, i.e. on a case like this: 2020-06-16 19:24:45 +03:00
pom.xml Update version to 0.7.0 2019-09-24 16:26:14 +03:00