How to specify -style PRETTY in com.google.gwt.dev.DevMode

GWT 2.0.4 seems to have removed style argument support:

Unknown argument: -style PRETTY

How can I get DevMode to generate Javascript readable output so that I can use Firebug to useful profile it?

+3
source share
2 answers

DevMode does not compile your Java code into JavaScript (which is what DevMode does: execute Java code as Java so you can bind the Java debugger), so there is no need for a "style".

GWT " " HostedMode, "", , , "" ". , .

0

Source: https://habr.com/ru/post/1769252/


All Articles