Home
last modified time | relevance | path

Searched refs:sourceMapURL (Results 1 – 11 of 11) sorted by relevance

/third_party/node/lib/internal/source_map/
Dsource_map_cache.js114 …eCacheSourceMap(filename, content, cjsModuleInstance, isGeneratedSource, sourceURL, sourceMapURL) { argument
125 if (sourceMapURL === undefined) {
126 sourceMapURL = extractSourceMapURLMagicComment(content);
130 if (typeof sourceMapURL !== 'string') {
138 const data = dataFromUrl(filename, sourceMapURL);
139 const url = data ? null : sourceMapURL;
/third_party/node/deps/v8/tools/
Dsourcemap.mjs93 * @param {string} sourceMapURL
97 WebInspector.SourceMap.load = function(sourceMapURL, compiledURL, callback) argument
99 …NetworkAgent.loadResourceForFrontend(WebInspector.resourceTreeModel.mainFrame.id, sourceMapURL, un…
110 …console.error(`Could not load content for ${sourceMapURL} : ${error || (`HTTP status code: ${statu…
119 const baseURL = sourceMapURL.startsWith("data:") ? compiledURL : sourceMapURL;
Dprofile.mjs185 let sourceMapURL = sourceMapURLMatch[1];
190 sourceMapPayload = await fetch(sourceMapURL);
197 await fetch(sourceMapFetchPrefix + sourceMapURL);
210 new WebInspector.SourceMap(sourceMapURL, sourceMapPayload);
219 source: new URL(mapping[2], sourceMapURL).href,
Dtickprocessor.mjs650 WebInspector.SourceMap.load = (sourceMapURL) => { argument
651 const content = d8.file.read(sourceMapURL);
653 return new SourceMap(sourceMapURL, sourceMapObject);
/third_party/node/test/parallel/
Dtest-vm-source-map-url.js9 assert.strictEqual(script.sourceMapURL, expectedSourceMapURL);
/third_party/node/lib/internal/modules/cjs/
Dloader.js1168 if (script.sourceMapURL) {
1169 maybeCacheSourceMap(filename, content, this, false, undefined, script.sourceMapURL);
1194 if (result.sourceMapURL) {
1195 maybeCacheSourceMap(filename, content, this, false, undefined, result.sourceMapURL);
/third_party/node/deps/v8/src/inspector/
Dv8-debugger-agent-impl.cc1734 String16 sourceMapURL = scriptRef->sourceMappingURL(); in setScriptInstrumentationBreakpointIfNeeded() local
1738 if (sourceMapURL.isEmpty()) return; in setScriptInstrumentationBreakpointIfNeeded()
/third_party/node/doc/api/
Dvm.md347 ### `script.sourceMapURL`
366 console.log(script.sourceMapURL);
378 console.log(script.sourceMapURL);
/third_party/node/deps/v8/include/
Djs_protocol.pdl562 optional string sourceMapURL
603 optional string sourceMapURL
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs15662 function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
15670 if (sourceMapURL) {
15671 var parsed = urlParse(sourceMapURL);
15673 throw new Error("sourceMapURL could not be parsed");
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp101191 const char16_t* sourceMapURL() const { return sourceMapURL_; } in sourceMapURL() function in JS::TransitiveCompileOptions
101247 const char16_t* sourceMapURL() const { return sourceMapURL_; } in sourceMapURL() function in JS::ReadOnlyCompileOptions
101354 sourceMapURL_ = rhs.sourceMapURL(); in CompileOptions()
101368 sourceMapURL_ = rhs.sourceMapURL(); in CompileOptions()