| 437 | } |
| 438 | |
| 439 | std::shared_ptr<const jsi::PreparedJavaScript> V8Runtime::prepareJavaScript( |
| 440 | const std::shared_ptr<const jsi::Buffer> &buffer, |
| 441 | std::string sourceURL) { |
| 442 | return std::make_shared<jsi::SourceJavaScriptPreparation>( |
| 443 | buffer, std::move(sourceURL)); |
| 444 | } |
| 445 | |
| 446 | jsi::Value V8Runtime::evaluatePreparedJavaScript( |
| 447 | const std::shared_ptr<const jsi::PreparedJavaScript> &js) { |
nothing calls this directly
no outgoing calls
no test coverage detected