In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

if(false)の中は自由?の検証

if (false) の中で使用したクラスが、コンパイルにクラスが含まれているかどうかで検証ができる。
最初の if (false) を true にしたら含まれる事がわかる。
/**
 * Copyright bkzen ( http://wonderfl.net/user/bkzen )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/eAZU
 */

// forked from shohei909's if(false)の中は自由?
// forked from Nicolas's switch文のbreakの外は自由?
package {
    import flash.text.TextField;
    import flash.display.Sprite;
    import flash.utils.getDefinitionByName;
    import net.hires.debug.Stats;
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            if( false ){
                new Stats();
            }
            if( true ){}else{
                こっちだって自由
            }
            if(false)の中は自由
            
            while( false ){
                //こっちはだめ
            }
            var tf:TextField = new TextField();
            addChild(tf);
            try
            {
                var c: Class = getDefinitionByName("net.hires.debug.Stats") as Class;
            }
            catch (err:Error)
            {
            }
            tf.text = "No Error!! : " + c;
            return;
            こんなところも使える
        }
    }
}