| 261 | inline Context& Context::operator= (Context&&) = default; |
| 262 | |
| 263 | inline choc::value::Value Context::invoke (std::string_view functionName) |
| 264 | { |
| 265 | CHOC_ASSERT (pimpl != nullptr); // cannot call this on a moved-from context! |
| 266 | pimpl->prepareForCall (functionName, 0); |
| 267 | return pimpl->performCall(); |
| 268 | } |
| 269 | |
| 270 | template <typename... Args> |
| 271 | choc::value::Value Context::invoke (std::string_view functionName, Args&&... args) |