I was looking around at how to make javascript run more efficiently as compiled code. I came across jscript.net in this question jscript
Whilst I was not really interested in using it to hide my JavaScript logic I was interested in the fact it resulted in compiled code.
I tried Googling around but I all I seem to get was that it was an old idea from Microsoft dating around framework 1.1.
Also, i got 2 camps of opinions saying they hated it because it was a nightmare to debug and the other side saying it improved performance.
I have not found much more info than that.
So, if I am not too concerned about debugging (for the moment) should I consider using jscript.net for the compiled faster execution of code? Is there a more modern alternative to this for the framework I am using or should I just not consider it at all?
Finally, {sorry} are there any code samples/instruction as to how to implement it?