Closed yegor256 closed 4 days ago
@volodya-lombrozo please, help
@yegor256 Does your class have the package
declaration?
@yegor256 I've checked the test and you don't have a package declaration:
.write("class Hello { double foo() { return Math.sin(42); } }".getBytes());
I guess you can add it and everything will work just fine:
.write("package org.eolang.hone;\n class Hello { double foo() { return Math.sin(42); } }".getBytes());
@volodya-lombrozo when package is not declared, don't put package
meta in the XMIR. Very often we don't have packages, it's legal.
@rultor release, tag is 0.6.23
, title is 0.6.23
@rultor release, tag is
0.6.23
, title is0.6.23
@volodya-lombrozo OK, I will release it now. Please check the progress here.
@rultor release, tag is
0.6.23
, title is0.6.23
@volodya-lombrozo Done! FYI, the full log is here (took me 16min).
@yegor256 Could you check the new version, please?
@volodya-lombrozo this problem is gone, thanks!
I'm using jeo:disassemble 0.6.22 and I'm getting this XMIR:
This is not a valid XMIR, since
part
can't be empty. Moreover, whytail
is empty? Full story is here: https://github.com/objectionary/hone-maven-plugin/pull/127