Re: [gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-10 Thread 'Goktug Gokdogan' via GWT Contributors
If you don't install your own uncaught exception handler, you should see it properly. On Thu, Jul 9, 2015 at 8:47 PM, Ali Akhtar ali.rac...@gmail.com wrote: I turned on: set-property name=compiler.stackMode value=emulated / set-configuration-property

[gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-09 Thread Ali Akhtar
In 2.8.0-SNAPSHOT, when the ValueChangeEvent is triggered for a dropdown, I'm encountering the following stack trace: Uncaught com.google.gwt.event.shared.UmbrellaException: Exception caught: Exception caught: (TypeError) : Cannot read property 'java_util_LinkedList_size' of undefined

Re: [gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-09 Thread Colin Alworth
As this isn't a NPE (or a type error, which I think is the JS equivalent), the we're missing a step here. You are seeing an UmbrellaException thrown, which means not that the handlermanager or event wiring broke, but that your own handler threw the exception (i.e. the 'TypeError' described in the

Re: [gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-09 Thread Ali Akhtar
How can I get the cause / stacktrace behind the umbrella exception? I have a global exception handler which prints the exception to console: https://gist.github.com/aliakhtar/7a9bbb2d3796917179ed What needs to be modified to get it to print the full trace? On Fri, Jul 10, 2015 at 8:18 AM, Colin

Re: [gwt-contrib] Bug in 2.8.0-Snapshot

2015-07-09 Thread Ali Akhtar
I turned on: set-property name=compiler.stackMode value=emulated / set-configuration-property name=compiler.emulatedStack.recordFileNames value=true / However, still don't see the cause of the UmbrellaException -- You received this message because you are subscribed to the Google Groups GWT