Lines Matching refs:parsed
1030 * TODO(@JakobJingleheimer): de-dupe `specifier` & `parsed`
1032 * @param {URL} parsed - The parsed URL of the import specifier.
1033 * @param {URL} parsedParentURL - The parsed URL of the parent module.
1036 function checkIfDisallowedImport(specifier, parsed, parsedParentURL) {
1046 const parsedProtocol = parsed?.protocol;
1060 return { url: parsed.href };
1138 let parsed;
1141 parsed = new URL(specifier, parsedParentURL);
1143 parsed = new URL(specifier);
1147 const protocol = parsed.protocol;
1156 return { __proto__: null, url: parsed.href };
1167 parsed,
1174 if (parsed && parsed.protocol === 'node:') { return { __proto__: null, url: specifier }; }