}
}
if (t instanceof ParseException) {
ParseException e = (ParseException)t;
PythonTree node = (PythonTree)e.node;
int line=e.line;
int col=e.charPositionInLine;
if (node != null) {
line = node.getLine();
col = node.getCharPositionInLine();
}
String text= getLine(reader, line);
String msg = e.getMessage();
if (e.getType() == Py.IndentationError) {
return new PyIndentationError(msg, line, col, text, filename);