Hello,
I was debugging some AS3 code, and I noticed that some variables that have a number in them, which was set in hex format, is shown as decimal in the debugger. As an example, I have this:
public static const STATE2:uint = 0xae03c339;
...
var gameState:uint = STATE2;
In VS Code this would look like this:

In FlashDevelop and IntelliJ IDEA it shows it in both dec and hex:

I think it would be very useful to show those variables in both dec and hex, to avoid having to go to an external number converter. Thanks!