So I have the following set in my module.gwt.xml:
<set-property name="compiler.emulatedStack" value="true"/>
<set-configuration-property name="compiler.emulatedStack.recordLineNumbers" value="true"/>
<set-configuration-property name="compiler.emulatedStack.recordFileNames" value="true"/>
I also have :
set in pom.xml in the config of the maven plugin.
But still, in sdm, when an error happens, the stacktrace I get is obfuscated:
com.google.gwt.event.shared.UmbrellaException: Exception caught: (TypeError) : Cannot read property 'setValidationState_0_g$' of undefined
Unknown.pY_g$(Module-0.js@19:15103)
Unknown.lY_g$(Module-0.js@8:15058)
...
Its strange because the other configuration settings that I set in pom.xml, such as launcherDir, do take effect.
I have also tried passing in -Dgwt.style=DETAILED as a jvm argument, but it has no effect either. I'm using mvn gwt:run-codeserver for running SDM.
Am I doing anything wrong?