| 285 | } |
| 286 | |
| 287 | void URLSearchParamsImpl::Sort(const v8::FunctionCallbackInfo<v8::Value> &args) { |
| 288 | URLSearchParamsImpl *ptr = GetPointer(args.This()); |
| 289 | if (ptr == nullptr) { |
| 290 | return; |
| 291 | } |
| 292 | ptr->GetURLSearchParams()->sort(); |
| 293 | } |
| 294 | |
| 295 | void URLSearchParamsImpl::ToString(const v8::FunctionCallbackInfo<v8::Value> &args) { |
| 296 | URLSearchParamsImpl *ptr = GetPointer(args.This()); |
nothing calls this directly
no test coverage detected