| 159 | */ |
| 160 | Result<Value> call(ValueFunctionFlags flags, const Value* parameters, size_t size) noexcept; |
| 161 | Result<Value> call(ValueFunctionFlags flags, std::initializer_list<Value> parameters) noexcept { |
| 162 | return call(flags, parameters.begin(), parameters.size()); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | Try to call the function synchronously and get the result. But if the |