| 548 | //----------------------------------------------------------------------------- |
| 549 | |
| 550 | InitListExpr* InitList(ArrayRef<Expr*> initExprs, QualType t) |
| 551 | { |
| 552 | auto* initList = new(GetGlobalAST()) InitListExpr(GetGlobalAST(), SourceLocation{}, initExprs, SourceLocation{}); |
| 553 | initList->setType(t); |
| 554 | |
| 555 | return initList; |
| 556 | } |
| 557 | //----------------------------------------------------------------------------- |
| 558 | |
| 559 | ArraySubscriptExpr* ArraySubscript(const Expr* lhs, uint64_t index, QualType type) |
no outgoing calls
no test coverage detected