Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-29 Thread alexl
hi, what is the svn command to download 2.0.3 source? thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-23 Thread Thomas Broyer
On 23 juin, 03:52, Pascal zig...@gmail.com wrote: Hi, Has the workaround been included in the codebase somewhere? Is there a chance that there will be a point release soon? There's been a change at the compiler-level instead: http://code.google.com/p/google-web-toolkit/source/detail?r=8300

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-23 Thread Chris Ramsdale
On Wed, Jun 23, 2010 at 6:50 AM, Thomas Broyer t.bro...@gmail.com wrote: On 23 juin, 03:52, Pascal zig...@gmail.com wrote: Hi, Has the workaround been included in the codebase somewhere? Is there a chance that there will be a point release soon? There's been a change at the

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-23 Thread Chris Ramsdale
Just trying to get some scope around this issue. How many developers are still on 1.7.x (or prior) and experiencing this problem? Basically, would a 2.0.4 fix a majority (if not all) of the current issues? If not, how feasible would it be to have you upgrade to 2.0.4 from a 1.x release to fix

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-22 Thread pash7ka
There is an Issue 4393 about this bug. I've applyed dunhamsteve's patch and also in all binarySearch() functions in Arrays.java and Collections.java changed: - final int mid = low + ((high - low) 1) + final int length = high - low; + final int half = length 1; + final int

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-22 Thread Pascal
Hi, Has the workaround been included in the codebase somewhere? Is there a chance that there will be a point release soon? Regards, Pascal -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-15 Thread DenNukem
So did you end up rebuilding the GWT itself? Where do I start to apply this patch? On Jun 9, 4:31 pm, dunhamst...@gmail.com dunhamst...@gmail.com wrote: This is occurring for us in the Arrays.mergeSort() code.  A reduced testcase (which looks like the binarySearch code) is in the webkit bug

Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-09 Thread Pascal
For both gwt 2.0.2 and 2.0.3 some of our users that have upgraded to Safari 5 are seeing this error. This is a vanilla GWT application (no external library). This is happening in web mode. Everything works fine in Safari 4 (and all other browsers). Also, some of our Safari 5 users are not seeing

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-09 Thread Pascal
When we try to run dev mode to get a better stack trace, everything works fine. Could it be a change in the javascript engine in safari 5 that's causing this error? Any insights? Regards, Pascal On 9 juin, 10:18, Pascal zig...@gmail.com wrote: For both gwt 2.0.2 and 2.0.3 some of our users

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-09 Thread Chris Conroy
Yes, others are hitting this, and it looks like a bug in the Safari 5 Javascript Core. On Wed, Jun 9, 2010 at 11:11 AM, Pascal zig...@gmail.com wrote: When we try to run dev mode to get a better stack trace, everything works fine. Could it be a change in the javascript engine in safari 5

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-09 Thread matthew jones
It seems to be 32bit safari related... running in rosetta or on SL in 64bit clears the issue up for us. On Jun 9, 10:11 am, Pascal zig...@gmail.com wrote: When we try to run dev mode to get a better stack trace, everything works fine. Could it be a change in the javascript engine in safari 5

Re: Safari 5 - (RangeError): Maximum call stack size exceeded

2010-06-09 Thread dunhamst...@gmail.com
This is occurring for us in the Arrays.mergeSort() code. A reduced testcase (which looks like the binarySearch code) is in the webkit bug tracking system at: https://bugs.webkit.org/show_bug.cgi?id=40355 It appears that in some complex expressions the right shift operator is not evaluating