}
} else if (file.getName().endsWith(".golo")) {
System.out.println(">>> AST for: " + goloFile);
try (FileInputStream in = new FileInputStream(goloFile)) {
ASTCompilationUnit ast = compiler.parse(goloFile, new GoloOffsetParser(in));
ast.dump("% ");
System.out.println();
} catch (IOException e) {
System.out.println("[error] " + goloFile + " does not exist or could not be opened.");
}
}