return _writeOutFirstBIF(bc,(BIF)member,mode,last,getStart());
}
static Type _writeOutFirstBIF(BytecodeContext bc, BIF bif, int mode,boolean last,Position line) throws BytecodeException {
GeneratorAdapter adapter = bc.getAdapter();
adapter.loadArg(0);
// class
Class bifClass = bif.getClazz();
Type bifType = Type.getType(bifClass);//Types.toType(bif.getClassName());
Type rtnType=Types.toType(bif.getReturnType());
if(rtnType==Types.VOID)rtnType=Types.STRING;