views:

72

answers:

1

I'm storing my model data in a Singleton called ModelLocator. This is pretty common...

Can I look at this data in the debugger?

[Edited - Title changed]

+4  A: 

yes. you'd do something like the following.

var model : MySingleton = MySingleton.getInstance();

then stick a breakpoint at the above and you'll be able to see everything inside your model.

kenneth