/**
* @see railo.transformer.bytecode.statement.StatementBase#_writeOut(org.objectweb.asm.commons.GeneratorAdapter)
*/
public void _writeOut(BytecodeContext bc) throws BytecodeException {
IfVisitor ifv=new IfVisitor();
ifv.visitBeforeExpression();
bc.getAdapter().push(true);
ifv.visitAfterExpressionBeforeBody(bc);
getBody().writeOut(bc);
ifv.visitAfterBody(bc);
}