try {
modulePrinter.println("includeFile(" + fname.image + ')');
String fn = StringUtil.trimquotes(fname.image);
AtmelParser parser = new AtmelParser(new FileInputStream(fn), this, fn);
// TODO: handle infinite include recursion possibility
parser.Module();
} catch (FileNotFoundException e) {
ERROR.IncludeFileNotFound(fname);
}
}