Re: Missing class names in superdevmode

2016-04-20 Thread 'Klemens Schrage' via GWT Users
I haven't found the responsible "namer-code" by myself yet, I'll guess I have to live with the current display-scheme. If it's related to Chrome I'll be happy to investigate in that direction. Sadly I currently have no pointer which would lead me to this assumption. -- You received this

Re: Missing class names in superdevmode

2016-03-31 Thread 'Klemens Schrage' via GWT Users
Do you know which class is responsible for naming the translated JavaScript-classes? All I could find right now were the namer for fields and methodnames. I guess that this is the part one would have to look into in order to understand, why the class names are shown as they do. -- You

Re: Missing class names in superdevmode

2016-03-29 Thread 'Klemens Schrage' via GWT Users
Yeah I tried to modify that parameter within the CodeServer. Sadly I wasn't able to get it to work. >From the mentioned commit all I found was that it only affects the naming of the field (JSIncrementalNamer on/off). But I couldn't find any evidence of the "class name" that is shown right to

Re: Missing class names in superdevmode

2016-03-29 Thread Jens
Hm I see. You probably have done DevMode -style, right? However in GWT 2.8 that DevMode class launches a different class called CodeServer which you can also start yourself. This CodeServer class has a -style parameter that you can use to modify the output. The corresponding commit to make that

Re: Missing class names in superdevmode

2016-03-29 Thread 'Klemens Schrage' via GWT Users
"-style" gives an error and even changing the JSOutputOption to PRETTY within a debugging session of CodeServer doesn't change the style. I would prefer an opt-out for this behaviour for maybe "not so big"-Projects. But it may have some deeper technical reasons that I don't see. Yes, maybe

Re: Missing class names in superdevmode

2016-03-28 Thread Jens
It's expected behavior in GWT 2.8. When starting DevMode there should be a console output saying "Starting CodeServer with parameters " so you can see how the SDM CodeServer is launched. It should contain -style OBF for obfuscated JS along with -XmethodNameDisplayMode. I think the primary

Re: Missing class names in superdevmode

2016-03-28 Thread 'Klemens Schrage' via GWT Users
Does nobody have this problem? Or am I the only one, who's interested in the actual class being used (especially in polymorphism cases). I would like to maximize my productivity in a newly started project. Best regards Klemens Am Freitag, 18. März 2016 07:33:12 UTC+1 schrieb Klemens Schrage: >

Missing class names in superdevmode

2016-03-19 Thread 'Klemens Schrage' via GWT Users
Hello, maybe I missed something within all those GWT 2.8 discussions / jsinterop announcements, but since switching to 2.8 beta (and even current snapshot) chrome doesn't show the variable's class name / type while debugging in dev tools. There is only the obfuscated name. Not the biggest deal