| 557 | //----------------------------------------------------------------------------- |
| 558 | |
| 559 | ArraySubscriptExpr* ArraySubscript(const Expr* lhs, uint64_t index, QualType type) |
| 560 | { |
| 561 | return new(GetGlobalAST()) ArraySubscriptExpr( |
| 562 | const_cast<Expr*>(lhs), Int32(index), type, ExprValueKind::VK_LValue, ExprObjectKind::OK_Ordinary, {}); |
| 563 | } |
| 564 | //----------------------------------------------------------------------------- |
| 565 | |
| 566 | params_vector to_params_view(params_store& params) |
no test coverage detected