In Eclipse, the debugger shows a unique session identifier next to each object (for Java and AS3, anyway). This makes it easy to identify the same object that appears in multiple contexts.
I am working on a JavaScript project and would like to have the same ability to identify objects in the Chrome debugger (for example, in the "Variable Areas" area). Is this information tracked by the browser / debugger? Is there any other way to identify an object through contexts without adding code (this is just an IDE method for this, applicable to any context).
source share