Tuesday, July 24, 2018

Re: GWT behaves differently in Chrom vs Firefox

clear your temp folder, sdm puts lots of stuff there and sometimes it gets corrupted and you get these kind of errrors.
On 24 Jul 2018, 18:53 +0200, Velusamy Velu <kool.velu@gmail.com>, wrote:
Hi Michael

I appreciate your recommendation. Yes it's in SDM mode. I don't have the luxury to try your suggestion right away due to my travel. Will try it on my return. 

I did suspect something to the effect of a cache behind this. Hence I tried clearing and rebuilding, it failed yet. Nothing helped so far.


On Tue, Jul 24, 2018, 11:08 AM Michael Joyner <michael@newsrx.com> wrote:
Is this in SDM mode? If yes, try turning off incremental compilations.

On Mon, Jul 23, 2018 at 9:43 PM, Velusamy Velu <kool.velu@gmail.com> wrote:
Friends:

I have an application written using GWT 2.8.2 framework and it behaves differently. The snippet of the GWT code in question is here -
(ReferenceError) : L_g_g$ is not defined


     
for (int j = 1; j < nodes.size(); j++) {
       
Node previousNode = nodes.get(j - 1);
       
Node currentNode = nodes.get(j);
       
int indexFrom = previousNode.getIndex();
       
int indexTo = currentNode.getIndex();

       
if (!connectionMatrix[indexFrom][indexTo]) {
          connectionMatrix
[indexFrom][indexTo] = true;
          connectionMatrix
[indexTo][indexFrom] = true;
          contributed
= true;
         
BondTriple bondTriple = new BondTriple(indexFrom, indexTo);


The last line of the above code snippet is the Culprit. It works as expected in FireFox, in Chrome however, it throws "L_g_g$ is not defined" error. In debugger mode I found that L_g_g$ refers to the BondTriple as highlighted here > BondTriple bondTriple = new BondTriple(indexFrom, indexTo);

This code has been thoroughly unit tested and every functionality was verified. The fact that it works in Firefox but fails in Chrome baffles me even more. BondTriple defined as below. I'm using non-primitive attributes to check for null. Have anyone ran into a situation like this? I'm having hard time figuring out what could be wrong. Your help will be greatly appreciated.

public class BondTriple implements Jsonable {
 
private Integer start;
 
private Integer finish;
 
private Integer bondType;
 
private Shape connector;

 
public BondTriple(Integer start, Integer finish) {
   
this.start = start;
   
this.finish = finish;
 
}
...



--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to a topic in the Google Groups "GWT Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/IYcu87xv4RA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment