Akash Kava

Results 44 comments of Akash Kava

@lofcz That is not possible as the IL is generated only first time, and it runs as native code. IL remains same throughout the lifetime of process. And there are...

@lofcz No, I don't think source generator will help. Sorry for misdirecting towards it, you will have to perform checks before start of method if user has access or not...

@lofcz No it is not possible, because IL generator will have to do dictionary look up for every methods. But it is still not correct way, because same method will...

@lofcz I have released new version with support of stack overflow. However, compared to V8, stack size available is only 1/8th, that is due to lot of extra calls placed...

@cyraid Trimming will not work as JavaScript is dynamic language and the all the runtime engine is loaded dynamically. For timebing you can simply disable trimming and see if it...

@cyraid This will require every method to be decorated with these attributes, which isn't possible. And it is too much of unnecessary code. Since none of the JavaScript runtime features...

@cyraid It would not work as every method would need to be present to execute the code. Also compile to assembly is actually used as caching as opposed to shipping...

@cyraid We have removed all Reflection code and we have replaced it with generated source, AOT trimming should work, you can try new release and let us know if you...

Recently I encountered a bug in a WebView (in Android App), which was synchronizing cookies only after the whole page is refreshed, not when cookie was via an AJAX request....

@darrachequesne `allowHTTP1` no longer works with chrome version 121 onwards, it used to work till 120.