I ran into a problem where I was getting a TypeError: Error #1009: Cannot access a property or method of a null object reference while the debugger was reporting that the object was not null. Traces report that the object is null, but the variables list in debug view or rolling over the variable reported that it was populated with an object.

link|improve this question

56% accept rate
feedback

1 Answer

The answer ended up being that I had a class and a subclass, each with a private var of the same name. The variable was populated in the subclass but not the superclass. The debugger did not differentiate between the two, and was reporting an incorrect value. This appears to be a debugger bug.

link|improve this answer
I was having the same issue, and this just solved it - thanks! – soulBit May 19 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.