[gwt-contrib] Google team meeting notes for August 7 (and earlier)

2013-08-10 Thread Heiko Braun
Regarding hello world app running using separate compilation: can you elaborate on that? Do you mean support for two distinct compilation units within the same page? Regards,Heiko -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread Thomas Broyer
There aren't really two concepts: you can mix and match generate-with and replace-with for the same type, and/or switch from one to the other over time. Actually, replace-with is only a shorthand for a generator returning a constant value (of a class that already exists). --

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread Ray Cromwell
I don't think APT is good enough. Java8 has a compiler plugin API for code-gen that might work. APT has limitations that make it problematic to replace generators. Stephen Haberman brought this up at the GWT meetup. On Fri, Aug 9, 2013 at 4:16 PM, Goktug Gokdogan gok...@google.com wrote: I

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread John A. Tamplin
On Fri, Aug 9, 2013 at 7:16 PM, Goktug Gokdogan gok...@google.com wrote: I think in the long-run we should separate the two concepts that is being tackled by GWT.create today. First purpose is the class replacement, especially used by permutations. I think this one should not have anything

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread Brian Slesinsky
2. IDE support: IDE can trigger codegen (esp. for debugging) My experience with this has been pretty poor, and running GWT with -gen is at least as useful. Also, Super Dev Mode gives you access to all the generated code. You can either use the browser's debugger with SourceMaps turned

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread John A. Tamplin
On Sat, Aug 10, 2013 at 2:18 PM, Brian Slesinsky skybr...@google.comwrote: 2. IDE support: IDE can trigger codegen (esp. for debugging) My experience with this has been pretty poor, and running GWT with -gen is at least as useful. Also, Super Dev Mode gives you access to all the

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread Andrés Testi
This reminds me a lot of Scala macros research. As you probably know, Scala solves code-gen issues with experimental support for several kinds of macros, distinguishing clearly between expression-level and type-level code generation/rewriting. APT covers only a fraction of type-level

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread Andrés Testi
I miss this line in my dagger example: CoffeeApp coffeeApp = objectGraph.get(CoffeeApp.class); El sábado, 10 de agosto de 2013 16:23:50 UTC-3, Andrés Testi escribió: This reminds me a lot of Scala macros research. As you probably know, Scala solves code-gen issues with experimental support

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread Brian Slesinsky
Now that I understand it (hopefully), I think Ray's proposal is a good way to define new API's by writing Java wrappers that configure generated objects at runtime. Adding parameters to GWT.create() calls seems somewhat orthogonal as a way to pass arguments to generators at compile time. As often

Re: [gwt-contrib] Possible GWT.create() Improvements (link)

2013-08-10 Thread John A. Tamplin
On Sat, Aug 10, 2013 at 4:42 PM, Brian Slesinsky skybr...@google.comwrote: Now that I understand it (hopefully), I think Ray's proposal is a good way to define new API's by writing Java wrappers that configure generated objects at runtime. Adding parameters to GWT.create() calls seems somewhat

Re: [gwt-contrib] Re: Google team meeting notes for August 7 (and earlier)

2013-08-10 Thread Stephen Haberman
Hi Brian, Our plan is to make Super Dev Mode compile faster. Have you gotten to discovering what parts are the slow ones? - Stephen -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT