Re: Announcement for the GWT 2.12 release

2024-10-29 Thread George Paret
still ensuring > that projects can continue to update with a minimum of friction. Thanks to > our testers, reviewers, committers in this release! A short list of the > names that helped bring us this release: Ahmad Bawaneh, Michael S., Dmitrii > Tikhomirov, Zbynek Konecny, Paul

Re: Deobfuscated stack trace message and line-specific stack traces

2024-02-24 Thread George Paret
I see the symbolmaps generated in ` target/gwt/deploy//symbolMaps ` I believe it is generated by default. On Friday, February 23, 2024 at 10:27:12 PM UTC-6 Craig Mitchell wrote: > The symbol maps worked great with the Eclipse GWT plugin compiler. > > Now switched to use the Maven compiler (wi

Re: JSInterop native class

2023-02-24 Thread George Paret
Thomas, Thank you for the detailed reply. I would have never figured out by myself that functions are recorded on the window but classes are not. Although this is probably the first time I posted a question here, I have immensely benefited from your helpful responses here, stackoverflow and v

JSInterop native class

2023-02-24 Thread George Paret
I am attempting to use a javascript class in GWT. Here is the sample code I am using. Javascript file - rhombus.js class Rhombus { static isReady() { return true; } } Java file - Rhombus.java package com.xyz.graphics; import jsinterop.annotations.JsPackage; import jsinterop.