> On 1 Oct 2017, at 14:58, Thierry Goubier <
[hidden email]> wrote:
>
> Hi,
>
> is there a way to look at a method code once it has been added metalinks?
You can inspect the method. The best is to turn on #optionCompileOnLinkInstallation
(just add
optionCompileOnLinkInstallation: true;
to the link definition).
This way the method is recompiled when installing the link, not on execution.
After you can inspect the method and look at the Bytecode / IR.
> I'm trying to add a metalink after the last statement of a block and it fails on IR generation with an unknown temporary...
>
If you have a test I can have a look, too
Marcus