blob: 9e29706e02b2594396186289f4337098196c63be [file] [log] [blame]
Andreas Huberc9410c72016-07-28 12:18:40 -07001#include "AST.h"
2
3#include "Formatter.h"
4
5#include <stdio.h>
6
7using namespace android;
8
9int main(int argc, const char *const argv[]) {
10 AST *ast = AST::Parse(argv[1]);
11
12 Formatter out;
13
14 printf("========================================\n");
15
16 ast->dump(out);
17
18 delete ast;
19 ast = NULL;
20
21 return 0;
22}