Skip to content

Commit

Permalink
feat(#33): fix puzzle descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Dec 26, 2023
1 parent 9a50aa2 commit dd5a87d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/eolang/opeo/Compiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ public Compiler(final Path xmirs, final Path output) {
*/
void compile() {
//@checkstyle MethodBodyCommentsCheck (5 lines)
//@todo #33:90min Implement compilation of high-level EO constructs into XMIRs.
// Currently we print dummy messages in order to pass 'decompile-compile' integration test.
// Implement this class and don't forget to add unit tests.
// Also, you might need to change some checks in the 'decompile-compile' integration test.
// @todo #33:90min Implement compilation of high-level EO constructs into XMIRs.
// Currently we print dummy messages in order to pass 'decompile-compile' integration test.
// Implement this class and don't forget to add unit tests.
// Also, you might need to change some checks in the 'decompile-compile' integration test.
Logger.info(this, "Compiling EO sources from %s", this.xmirs);
Logger.info(this, "Saving new compiled EO sources to %s", this.output);
Logger.info(this, "Compiled app.eo (545 bytes)");
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/org/eolang/opeo/Decompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ public Decompiler(
*/
void decompile() {
//@checkstyle MethodBodyCommentsCheck (5 lines)
//@todo #33:90min Implement decompilation of EO to high-level EO.
// Currently we print dummy messages in order to pass 'decompile-compile' integration test.
// We have to implement decompilation of EO to high-level EO.
// Don't forget to add unit tests. Also, you might need to change some checks in the
// 'decompile-compile' integration test.
// @todo #33:90min Implement decompilation of EO to high-level EO.
// Currently we print dummy messages in order to pass 'decompile-compile' integration test.
// We have to implement decompilation of EO to high-level EO.
// Don't forget to add unit tests. Also, you might need to change some checks in the
// 'decompile-compile' integration test.
Logger.info(this, "Decompiling EO sources from %s", this.xmirs);
Logger.info(this, "Saving new decompiled EO sources to %s", this.output);
Logger.info(this, "Decompiled app.eo (545 bytes)");
Expand Down

2 comments on commit dd5a87d

@0pdd
Copy link

@0pdd 0pdd commented on dd5a87d Dec 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 33-446355f9 discovered in src/main/java/org/eolang/opeo/Compiler.java) and submitted as #37. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link

@0pdd 0pdd commented on dd5a87d Dec 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 33-2b10146a discovered in src/main/java/org/eolang/opeo/Decompiler.java) and submitted as #38. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.