| 535 | true) {} |
| 536 | |
| 537 | ConstantValue eval(EvalContext& context, const Args& args, SourceRange, |
| 538 | const CallExpression::SystemCallInfo&) const final { |
| 539 | auto val = args[0]->eval(context); |
| 540 | if (!val) |
| 541 | return nullptr; |
| 542 | |
| 543 | return SVInt(32, val.size(), true); |
| 544 | } |
| 545 | }; |
| 546 | |
| 547 | class DynArrayDeleteMethod : public SimpleSystemSubroutine { |