Exemplo n.º 1
0
Call* Ast::CreateCall(const location& loc, AstNode *name, AstNode* args)
{
	Call *call = new Call(this, loc, args);
    if (name) {
        call->SetFunc(name);
    }
    return call;
}