On Monday, February 1, 2016 at 1:48:11 PM UTC+1, [email protected] wrote: > > You can't see server-side code at the browser. I believe every class that > is marked in gwt.xml file as translatable generates source maps, but this > is not server-side code. >
Server-side code runs in a JVM (DevMode or your servlet container of choice) and is debugged with a Java debugger (generally from your IDE). Client-side code is compiled to JS and runs in your browser, and is debugged with a JS debugger with the help of sourcemaps (generally from your browser, but possibly from your IDE) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
