| 341 | //----------------------------------------------------------------------------- |
| 342 | |
| 343 | GotoStmt* Goto(std::string_view labelName) |
| 344 | { |
| 345 | return new(GetGlobalAST()) GotoStmt(mkLabelDecl(labelName), {}, {}); |
| 346 | } |
| 347 | //----------------------------------------------------------------------------- |
| 348 | |
| 349 | ParmVarDecl* Parameter(const FunctionDecl* fd, std::string_view name, QualType type) |
no test coverage detected