Lines Matching refs:url
55 const { fileURLToPath } = require('internal/url');
125 function isNativeUrl(url) {
126 url = SideEffectFreeRegExpPrototypeSymbolReplace(/\.js$/, url, '');
128 return StringPrototypeStartsWith(url, 'node:internal/') ||
129 ArrayPrototypeIncludes(PUBLIC_BUILTINS, url) ||
130 url in NATIVES || url === 'bootstrap_node';
428 const { isNative, url } = script;
429 const name = `${getRelativePath(url)}${isNative ? ' <native>' : ''}`;
555 (script && getRelativePath(script.url)) || '<unknown>';
701 const scriptUrl = script && script.url;
726 const scriptUrl = script ? script.url : location.scriptUrl;
794 const scriptUrl = knownScripts[id].url;
844 function clearBreakpoint(url, line) {
850 StringPrototypeIncludes(script.url, url) &&
855 print(`Could not find breakpoint at ${url}:${line}`);
905 const scriptUrl = script ? getRelativePath(script.url) : '[unknown]';
930 const { scriptId, url } = script;
931 if (url) {
932 knownScripts[scriptId] = { isNative: isNativeUrl(url), ...script };