eval.getStdOut().flush();
}
}
public void iprintToFile(ISourceLocation sloc, IValue arg, IEvaluatorContext eval) {
StandardTextWriter w = new StandardTextWriter(true, 2);
StringWriter sw = new StringWriter();
try {
w.write(arg, sw);
writeFile(sloc, values.list(values.string(sw.toString())), eval);
} catch (IOException e) {
throw RuntimeExceptionFactory.io(values.string(e.getMessage()), eval.getCurrentAST(), null);
}
}