1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#include <fstream>
#include <iomanip>
#include <iostream>
#include <string>
#include <stdlib.h>
#include "Parser.h"
#include "ParseException.h"
#include "ParserTree.h"
#include "ParserTokenManager.h"
using namespace std;
using namespace EG2;
JAVACC_STRING_TYPE ReadFileFully(char *file_name) {
// JAVACC_STRING_TYPE s;
//#if WIDE_CHAR
// wifstream in;
//#else
// ifstream in;
//#endif
// in.open(file_name, ios::in);
// // Very inefficient.
// while (!in.eof()) {
// s += in.get();
// }
return "1 + 2 * (a + b);\n";//s;
}
int main(int argc, char** argv) {
cout << "Reading from standard input..." << endl;
JAVACC_STRING_TYPE s = ReadFileFully(argv[1]);
try {
CharStream *stream = new CharStream(s.c_str(), s.size() - 1, 1, 1);
ParserTokenManager *scanner = new ParserTokenManager(stream);
Parser parser(scanner);
ASTStart* n = parser.Start();
n->dump("");
cout << "Thank you." << endl;
} catch (const ParseException& e) {
}
return 0;
}
|