| 272 | inline Context& Context::operator= (Context&&) = default; |
| 273 | |
| 274 | inline choc::value::Value Context::invoke (std::string_view functionName) |
| 275 | { |
| 276 | CHOC_ASSERT (pimpl != nullptr); // cannot call this on a moved-from context! |
| 277 | pimpl->prepareForCall (functionName, 0); |
| 278 | return pimpl->performCall(); |
| 279 | } |
| 280 | |
| 281 | template <typename... Args> |
| 282 | choc::value::Value Context::invoke (std::string_view functionName, Args&&... args) |