summaryrefslogtreecommitdiffstats
path: root/Sencha-lang/AST/AST.cpp
blob: 5fcf37e92856f3b10c72067fc56d67340611b4ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * AST.cpp
 *
 *  Created on: Nov 4, 2012
 *      Author: attero
 */
#include "AST.h"
#include "AllTypesOfASTNodes.h"

AST::AST() {
	root = new ProgramNode();
	current_node = root;
	number_of_nodes = 1;
	level_of_depth = 0;
}

AST::~AST() {
}