Let's say I have an object Node. Node contains a Collection of Node.
So, it's a hierarchy of Node objects.
I've found that if the hierarchy goes too deep (maybe 6 levels), GWT
will complain about a stack overflow at line 0.
Is this a known issue? If not then I'll try to create a test case and
post it here.
A workaround that works for me is to create a list of all the children
for all the nodes and then reassemble it all on the client side.
However, it's a pain in the neck to have to do it.
I don't see the error when viewing the app in a normal browser with the
app running in Jetty, but that might just be because script error
alerting isn't turned on in the browser.