| 577 | //----------------------------------------------------------------------------- |
| 578 | |
| 579 | DeclRefExpr* mkVarDeclRefExpr(std::string_view name, QualType type) |
| 580 | { |
| 581 | auto* internalThisVar = Variable(name, type); |
| 582 | auto* declRef = mkDeclRefExpr(internalThisVar); |
| 583 | |
| 584 | return declRef; |
| 585 | } |
| 586 | //----------------------------------------------------------------------------- |
| 587 | |
| 588 | static CallExpr* CallConstructor(QualType ctorType, |
no test coverage detected