| 312 | } |
| 313 | |
| 314 | inline void Context::run (const std::string& javascriptCode, CompletionHandler handleResult) |
| 315 | { |
| 316 | CHOC_ASSERT (pimpl != nullptr); // cannot call this on a moved-from context! |
| 317 | pimpl->run (javascriptCode, nullptr, std::move (handleResult)); |
| 318 | } |
| 319 | |
| 320 | inline void Context::runModule (const std::string& moduleCode, ReadModuleContentFn readModule, CompletionHandler handleResult) |
| 321 | { |
no outgoing calls