blob: 9e29706e02b2594396186289f4337098196c63be [file] [log] [blame]
#include "AST.h"
#include "Formatter.h"
#include <stdio.h>
using namespace android;
int main(int argc, const char *const argv[]) {
AST *ast = AST::Parse(argv[1]);
Formatter out;
printf("========================================\n");
ast->dump(out);
delete ast;
ast = NULL;
return 0;
}