标签: c++ clang
在clang的ActOnIfStmt函数中,我们有:
ActOnIfStmt
return Owned(new (Context) IfStmt(Context, IfLoc, ConditionVar, ConditionExpr, thenStmt, ElseLoc, elseStmt));
我的印象是Context是指针类型,但它是类类型。这是如何工作的,这个代码做了什么?
Context