Roberto Lublinerman
Roberto Lublinerman
@niloc132, are you confusing SingleImpl with DualImpl? In GWT you are able to have Java interfaces implemented by a JSO and Java class, those are called DualImp interfaces. In such...
One last point you have to think that `@JsOverlay` method are a static method that has just a convenient way to call is if it was an instance method. You...
> I understand what an overlay method is (both the gwt2 and jsinterop variety) - and that you sorta-kinda-if-you-squint can override them. Not sure what you mean that you can...
Let me check if it breaks anything internally...
> We can annotate the function itself (once) rather than all calls to it (many). That is, unless there are cases where some calls to the same target should be...
The functions that we mark as side effect free fall into property 1; we also mark some that don't modify the global state nor escape values so that binaryen also...
I think all the usages we currently have for sideeffect-free functions could also classify as pure. Calls can be dropped if the return value is not used, and they can...