You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @todo #344:90min Interface Invocation Type Inference
* We used to infer 'owner' of a interface method invocation from the {@link #source}.
* However it led to failed tests.
* <p> Here is how we did it:
* {@code
* final Typed owner = (Typed) this.source;
* res.add(
* new Opcode(
* Opcodes.INVOKEINTERFACE,
* owner.type().getClassName().replace('.', '/'),
* this.attrs.name(),
* this.attrs.descriptor(),
* this.attrs.interfaced()
* )
* );
* }
* </p>
* We should use the similar approach, but we also have to ensure that all the tests pass.
The puzzle was created by volodya-lombrozo on 06-Aug-24.
Estimate: 90 minutes, role: DEV.
If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.
The text was updated successfully, but these errors were encountered:
The puzzle
344-12d10f3d
from #344 has to be resolved:opeo-maven-plugin/src/main/java/org/eolang/opeo/ast/InterfaceInvocation.java
Lines 48 to 65 in 1147744
The puzzle was created by volodya-lombrozo on 06-Aug-24.
Estimate: 90 minutes, role: DEV.
If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.
The text was updated successfully, but these errors were encountered: