/*
 * ast.cpp
 *
 *  Created on: Jun 11, 2015
 *      Author: pgess
 */

#include "gtest/gtest.h"
#include "passmanager.h"
#include "pass/functiontagspass.h"
#include "Parser.h"

using namespace std;
using namespace xreate;

TEST(AST, Containers1){
	FILE* input = fopen("scripts/testspass/Containers_Implementation_LinkedList1.xreate","r");
	Scanner scanner(input);
    Parser parser(&scanner);
    parser.Parse();

    const AST& ast = parser.root;

	fclose(input);
}


