Silent compilation

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Silent compilation

Sergio Fedi
Hi guys,

What is a silent compilation?

When should it be used?
Reply | Threaded
Open this post in threaded view
|

Re: Silent compilation

Clément Béra
Silent compilation is when the compilation is done without telling any other objects.

In the regular compilation of a method, for example, you tell all the class browsers opened that the method was compiled so that if a class browser shows an old version of the same method it is refreshed to show the new version. If you use silent compilation, the class browsers won't be updated.

Silent compilation can be used in specific frameworks that wants to edit the methods without the tools to be aware, for example, when you do bytecode manipulation, which does not change the source code of methods, and that the bytecode manipulation is done frequently so that you don't want the overhead of the tool updates.

2015-05-19 12:55 GMT+02:00 Sergio Fedi <[hidden email]>:
Hi guys,

What is a silent compilation?

When should it be used?

Reply | Threaded
Open this post in threaded view
|

Re: Silent compilation

Sergio Fedi
Thanks for the explanation.

Now I understand.