Flex“仅调试”代码?

时间:2011-07-22 16:53:24

标签: flex debugging actionscript compiler-construction

有没有办法标记代码的某些部分,以便它们甚至不能在发布模式下编译?我知道你可以用C#语法这样做:

if #DEBUG
    trace("Debug");
else
    trace("Release");

Actionscript / Flex是否有任何类似功能?

1 个答案:

答案 0 :(得分:5)

是的,您可以使用:

CONFIG::debugging { 
    trace("Debug"); 
}
CONFIG::release { 
    trace("Release"); 
}

使用以下编译器参数:

-define+=CONFIG::debugging,true -define+=CONFIG::release,false

更多详情为here