Skip to content

Commit

Permalink
feat(objectionary#86): remove the puzzle for 86 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Jan 16, 2024
1 parent 13655cc commit f879114
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/java/org/eolang/opeo/ast/Invocation.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,8 @@ public Iterable<Directive> toXmir() {

@Override
public List<AstNode> opcodes() {
//@checkstyle MethodBodyCommentsCheck (10 lines)
// @todo #76:90min Implement and test invocation opcodes compilation.
// Current implementation is dummy and is used only to pass integration tests.
// We need to implement and test invocation opcodes compilation.
final List<AstNode> res = new ArrayList<>(0);
res.addAll(this.source.opcodes());
this.arguments.stream().map(AstNode::opcodes).forEach(res::addAll);
res.add(new Opcode(Opcodes.INVOKEVIRTUAL, "V", this.method, "V()"));
return res;
Expand Down

0 comments on commit f879114

Please sign in to comment.