Home | History | Annotate | Download | only in AST

Lines Matching refs:StmtExpr

3458 /// StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
3459 /// The StmtExpr contains a single CompoundStmt node, which it evaluates and
3462 /// A StmtExpr is always an r-value; values "returned" out of a
3463 /// StmtExpr will be copied.
3464 class StmtExpr : public Expr {
3471 StmtExpr(CompoundStmt *substmt, QualType T,
3478 explicit StmtExpr(EmptyShell Empty) : Expr(StmtExprClass, Empty) { }