Home | History | Annotate | Download | only in AST

Lines Matching defs:ReturnStmt

1357 /// ReturnStmt - This represents a return, optionally of an expression:
1366 class ReturnStmt : public Stmt {
1372 explicit ReturnStmt(SourceLocation RL) : ReturnStmt(RL, nullptr, nullptr) {}
1374 ReturnStmt(SourceLocation RL, Expr *E, const VarDecl *NRVOCandidate)
1379 explicit ReturnStmt(EmptyShell Empty) : Stmt(ReturnStmtClass, Empty) { }