| 280 | //----------------------------------------------------------------------------- |
| 281 | |
| 282 | LabelStmt* Label(std::string_view name) |
| 283 | { |
| 284 | return new(GetGlobalAST()) LabelStmt({}, mkLabelDecl(name), nullptr); |
| 285 | } |
| 286 | //----------------------------------------------------------------------------- |
| 287 | |
| 288 | CompoundStmt* mkCompoundStmt(ArrayRef<Stmt*> bodyStmts, SourceLocation beginLoc, SourceLocation endLoc) |
no test coverage detected