[gwt-contrib] Cannot build any project since 5a972863

2014-01-22 Thread Honza Rameš
Hello everyone, I'm using master for my projects and after I updated to commit 5a972863 (Added monolithic/separate branching to JavaToJavaScriptCompiler) suddenly I wasn't able to compile any of my GWT projects (in Eclipse, see error message bellow). I'm using jdk_1.7 and older commit

[gwt-contrib] Re: Cannot build any project since 5a972863

2014-01-22 Thread Andrés Testi
I have the same problem. - Andrés Testi El miércoles, 22 de enero de 2014 09:07:08 UTC-3, Honza Rameš escribió: Hello everyone, I'm using master for my projects and after I updated to commit 5a972863 (Added monolithic/separate branching to JavaToJavaScriptCompiler) suddenly I wasn't able

Re: [gwt-contrib] Cannot build any project since 5a972863

2014-01-22 Thread John Stalcup
Yeah that does look to be related to my commit. Which compiler entry point are you launching and with what flags? I updated Compiler.java, CompilePerms.java, etc etc to property setup the module property of the compilerContext object, but it looks like I missed somewhere. John On Wed, Jan 22,

Re: [gwt-contrib] Cannot build any project since 5a972863

2014-01-22 Thread Andrés Testi
Hi John: I'm running ant without explicit target (build by default). No explicit flags. I got the same exception in two isolated environments (ubuntu 13.10 with OpenJDK, and Windows 8 with Oracle JDK). The exception is throwed when the script tries to compile the DynaTable sample.

Re: [gwt-contrib] Cannot build any project since 5a972863

2014-01-22 Thread John Stalcup
Yeah. It seems that CompilePermsServer doesn't have a ModuleDef instance, so it's not populating compilerContext.getModule(), which laters causes compilerContext.getModule().isMonolithic() to fail. I'm working on a fix. On Wed, Jan 22, 2014 at 11:26 AM, Andrés Testi

Re: [gwt-contrib] Cannot build any project since 5a972863

2014-01-22 Thread Andrés Testi
Thanks! - Andrés Testi El miércoles, 22 de enero de 2014 16:39:45 UTC-3, John Stalcup escribió: Yeah. It seems that CompilePermsServer doesn't have a ModuleDef instance, so it's not populating compilerContext.getModule(), which laters causes compilerContext.getModule().isMonolithic() to

Re: [gwt-contrib] Cannot build any project since 5a972863

2014-01-22 Thread jay
I realize that about the only thing in common is that the GWT compiler is throwing an NPE, but I have to ask... Is there any chance that this issue has the same root cause as the NPE I reported in this posthttps://groups.google.com/forum/#!topic/google-web-toolkit-contributors/1vA7gYrCjvo and