* @see railo.transformer.bytecode.Statement#_writeOut(org.objectweb.asm.commons.GeneratorAdapter)
*/
public void _writeOut(BytecodeContext bc) throws BytecodeException {
GeneratorAdapter adapter = bc.getAdapter();
adapter.loadArg(0);
ExprString es=CastString.toExprString(expr);
boolean usedExternalizer=false;
/*if(es instanceof LitString) {
LitString ls = ((LitString)es);
ls.setExternalize(true);
}*/
if(!usedExternalizer)es.writeOut(bc,Expression.MODE_REF);
adapter.invokeVirtual(Types.PAGE_CONTEXT,checkPSQ?METHOD_WRITE_PSQ:METHOD_WRITE);
}