Hi Neo, Is the class from which that stack trace stems declared without any access modifiers? I recall a previous thread which described a similar issue. The problem there was that there was a class defined with no access modifier that lived in a different package than the module entry point class. Adding "public" to the class to make it visible to the GWT compiler fixed the issue.
Hope that helps, -Sumit Chandel On Wed, May 27, 2009 at 4:40 AM, Neo <[email protected]> wrote: > > Hi, > I am working on a database driven GWT application. In my application I > have a Multi Column Tree control which again is populated by db values > and it allows user edits also. I have used Smart GWT in my application > to create the Multi-Column tree. > > My application runs fine when I run it in hosted mode but when I try > running it in IE (by using Compile/Browse) button it the following > compile errors : > > [ERROR] The type com.google.gwt.dev.js.rhino.ObjToIntMap$Iterator > cannot be resolved. It is indirectly referenced from required .class > files > > [ERROR] An internal compiler exception occurred > com.google.gwt.dev.jjs.InternalCompilerException: Failed to get JNode > at com.google.gwt.dev.jjs.impl.TypeMap.get(TypeMap.java:75) > at com.google.gwt.dev.jjs.impl.BuildTypeMap > $BuildDeclMapVisitor.createParameter(BuildTypeMap.java:392) > at com.google.gwt.dev.jjs.impl.BuildTypeMap > $BuildDeclMapVisitor.mapParameters(BuildTypeMap.java:514) > at > com.google.gwt.dev.jjs.impl.BuildTypeMap$BuildDeclMapVisitor.visit > (BuildTypeMap.java:314) > > > Could you please help me out in resolving these issues ? > I want to deploy my application but due to these errors I am not to > proceed. > Please help me. > > Thanks in advance. > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
