AST constructor

AST()

Implementation

AST() {
  commentIndex = 0;
  root = TreeNode();
  root.value = "root";
  comments = new Map();
}