Lines Matching refs:result
386 MaybeLocal<Value> result;
388 MaybeLocal<Value> result = module->Evaluate(context);
389 if (!result.IsEmpty() && microtask_queue)
391 return result;
396 result = run();
399 result = run();
402 result = run();
404 result = run();
407 if (result.IsEmpty()) {
432 args.GetReturnValue().Set(result.ToLocalChecked());
457 Local<Value> result = module->GetModuleNamespace();
458 args.GetReturnValue().Set(result);
598 Local<Value> result;
603 import_args).ToLocal(&result)) {
604 CHECK(result->IsPromise());
605 return handle_scope.Escape(result.As<Promise>());