forked from: Debugging stack overflows

by shohei909 forked from Debugging stack overflows (diff: 4)
Does anybody know how I can find out which function 
started the infinite recursion?

The stack trace cuts off and doesn't show which 
function initially called overflow()
♥0 | Line 22 | Modified 2011-03-25 11:55:40 | MIT License
play

ActionScript3 source code

/**
 * Copyright shohei909 ( http://wonderfl.net/user/shohei909 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/1Ivr
 */

// forked from yonatan's Debugging stack overflows
// Does anybody know how I can find out which function 
// started the infinite recursion?
//
// The stack trace cuts off and doesn't show which 
// function initially called overflow()

package {
    import com.bit101.components.TextArea;
    public class FlashTest extends TextArea {
        public function FlashTest() {
            width=height=465;
            try {
                test();
            } catch(e:Error) {
                text = e.getStackTrace();
            }
        }
        
        private function test():void {
            overflow();
        }
        
        private var count:int = 0;
        private function overflow():void {
            if( count++ > 50 ) throw new Error();
            overflow();
            count = 0;
        }
    }
}

Forked