String line = text.getElementAsString(i);
try {
ExpressionVector result = RParser.parseSource(new StringReader(line + "\n"));
Iterables.addAll(expressions, result);
} catch (IOException e) {
throw new EvalException("I/O Exception occurred during parse: " + e.getMessage());
}
}
} else if(file.inherits("connection")) {
Connection conn = Connections.getConnection(context, file);
Reader reader = new InputStreamReader(conn.getInputStream());