Konstantin Milyutin
Konstantin Milyutin

Reputation: 12366

Debugging GWT's JavaScript in Intellij

When I debug GWT's client code from Intellij, debugger shows variable names as they are in compiled JavaScript and not as they were named in Java:

enter image description here

When I move mouse over some variable I get ReferenceError:

enter image description here

I thought it is the task of source maps to convert between js and java names.

Have I configured something incorrectly or is it just the current state of source maps?

Upvotes: 2

Views: 207

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 401975

It appears do be a known GWT issue. Our developers are working with GWT team to support it in IDEA 15. You can track the progress here.

You can already try IDEA 15 EAP where it should partially work (not for all cases).

Upvotes: 1

Related Questions