The SuperDevMode trace doesn't make sense to us. There should be a stack trace that includes frames from our framework code, but there are no such frames. Where did you set the breakpoint to collect the function call output we requested?
Also, it appears you've ignored the request to switch over to a full debug configuration. Have you uncommented the lines we requested in build.xml? We can see that you're including the debug versions of the inherited modules in your gwt.xml module - these should actually be the debug no script versions since you don't want loadScriptTagFiles generated. (There's no need to manually remove it.) Then in your HTML, you need to pick up the framework modules from the modules-debug directory, as per the debugging help topic we linked above.
After all those changes, you should not be seeing obfuscated symbols, like _9, in Legacy DevMode, though you won't get any stack frames from inside the framework.
Also, it appears you've ignored the request to switch over to a full debug configuration. Have you uncommented the lines we requested in build.xml? We can see that you're including the debug versions of the inherited modules in your gwt.xml module - these should actually be the debug no script versions since you don't want loadScriptTagFiles generated. (There's no need to manually remove it.) Then in your HTML, you need to pick up the framework modules from the modules-debug directory, as per the debugging help topic we linked above.
After all those changes, you should not be seeing obfuscated symbols, like _9, in Legacy DevMode, though you won't get any stack frames from inside the framework.
Comment