annotateAST function
Implementation
void annotateAST(Program ast) {
setParentPointers(ast);
EnvironmentBuilder().build(ast);
Resolver().resolve(ast);
}
void annotateAST(Program ast) {
setParentPointers(ast);
EnvironmentBuilder().build(ast);
Resolver().resolve(ast);
}