I am using Chrome dev tools to step through my GWT MVP app as it renders a View using Super Dev Mode.
In the developer tools, I am stepping though the source mapped java code executing my method. I can highlight variables, right click, and "Evaluate in console" to inspect the state of my locally scoped variables.
I want to do the same things with my class members. It works in public methods. Within private methods, evaluating a class member results in a "ReferenceError: is not defined." response.
I tried annotating my class members with "this.myPanel". The response is a simple "undefined". Besides 'this' is referencing Window[0]