Merge pull request #1 from jorendorff/master

Merge jorendoff's very kind cleanup (and tests!) of StringReader code
This commit is contained in:
Nathan Braswell
2013-10-26 08:51:37 -07:00
5 changed files with 95 additions and 88 deletions

View File

@@ -17,7 +17,11 @@
int main(int argc, char* argv[]) {
if (argc == 2 && std::string(argv[1]) == "--test") {
StringReader::test();
return 0;
}
std::ifstream programInFile, grammerInFile;
std::ofstream outFile, outFileTransformed, outFileAST;
@@ -147,4 +151,4 @@ int main(int argc, char* argv[]) {
return(0);
}