| 213 | } |
| 214 | |
| 215 | void pushObjectOrArray (const choc::value::ValueView& v) override |
| 216 | { |
| 217 | currentCallContext->functionArgs.emplace_back (chocToV8 (currentCallContext->localContext, v)); |
| 218 | } |
| 219 | |
| 220 | void pushArg (std::string_view s) override { currentCallContext->functionArgs.emplace_back (stringToV8 (s)); } |
| 221 | void pushArg (int32_t v) override { currentCallContext->functionArgs.emplace_back (v8::Int32::New (isolate, v)); } |
nothing calls this directly
no test coverage detected