As3: meaningful object identification during debugging

I wanted to ask if it is possible to identify objects in a more meaningful way during debugging. for example, now in the debug panel of flex builder I see, for example:

Object (@ 12131241241)

And ideally, I wanted to have Object (@ "field1: field2") ... is there any way to do this. I believe in java, this can be achieved by overriding the toString method of this class .... I tried the same in as3, but it did not work

+1
source share
1 answer

Not answering your question right here, but there are many community debuggers that give you more meaningful data. The idea behind the Intellij IDE or Flash Develop and there are several other projects like http://demonsterdebugger.com/ or http://code.google.com/p/flash-console/ that give you a crazy set of debugging tools.

0
source

Source: https://habr.com/ru/post/956398/


All Articles