flash on 2010-10-20

by partlyhuman
♥0 | Line 13 | Modified 2010-10-20 07:29:52 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            var a:A = new A();
            trace(a.prototype);
        }
    }
}
import flash.events.EventDispatcher;

class A extends EventDispatcher
{
    
}