Lines Matching defs:resolution
212 JSHandle<JSTaggedValue> resolution =
214 // ii. If resolution is null or "ambiguous", throw a SyntaxError exception.
215 if (resolution->IsNull() || resolution->IsString()) {
220 CString msg = "the requested module '" + requestMod + SourceTextModule::GetResolveErrorReason(resolution) +
227 // in.[[LocalName]], resolution.[[Module]], resolution.[[BindingName]]).
228 environment->Set(thread, index, resolution);
229 ASSERT(resolution->IsResolvedIndexBinding());
230 ResolvedIndexBinding *binding = ResolvedIndexBinding::Cast(resolution.GetTaggedValue());