Lines Matching refs:SourceMapConsumer
34 - [SourceMapConsumer](#sourcemapconsumer)
35 - [new SourceMapConsumer(rawSourceMap)](#new-sourcemapconsumerrawsourcemap)
36 …- [SourceMapConsumer.prototype.computeColumnSpans()](#sourcemapconsumerprototypecomputecolumnspans)
37 …- [SourceMapConsumer.prototype.originalPositionFor(generatedPosition)](#sourcemapconsumerprototype…
38 …- [SourceMapConsumer.prototype.generatedPositionFor(originalPosition)](#sourcemapconsumerprototype…
39 …- [SourceMapConsumer.prototype.allGeneratedPositionsFor(originalPosition)](#sourcemapconsumerproto…
40 …- [SourceMapConsumer.prototype.hasContentsOfAllSources()](#sourcemapconsumerprototypehascontentsof…
41 …- [SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing])](#sourcemapconsumer…
42 …- [SourceMapConsumer.prototype.eachMapping(callback, context, order)](#sourcemapconsumerprototypee…
79 var smc = new SourceMapConsumer(rawSourceMap);
183 ### SourceMapConsumer subsection
185 A SourceMapConsumer instance represents a parsed source map which we can query
189 #### new SourceMapConsumer(rawSourceMap) argument
211 var consumer = new sourceMap.SourceMapConsumer(rawSourceMapJsonData);
214 #### SourceMapConsumer.prototype.computeColumnSpans() argument
245 #### SourceMapConsumer.prototype.originalPositionFor(generatedPosition) argument
259 * `bias`: Either `SourceMapConsumer.GREATEST_LOWER_BOUND` or
260 `SourceMapConsumer.LEAST_UPPER_BOUND`. Specifies whether to return the closest
263 `SourceMapConsumer.GREATEST_LOWER_BOUND`.
292 #### SourceMapConsumer.prototype.generatedPositionFor(originalPosition) argument
320 #### SourceMapConsumer.prototype.allGeneratedPositionsFor(originalPosition) argument
357 #### SourceMapConsumer.prototype.hasContentsOfAllSources() argument
376 #### SourceMapConsumer.prototype.sourceContentFor(source[, returnNullOnMissing]) argument
399 #### SourceMapConsumer.prototype.eachMapping(callback, context, order) argument
411 * `order`: Either `SourceMapConsumer.GENERATED_ORDER` or
412 `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to iterate over
415 `SourceMapConsumer.GENERATED_ORDER`.
462 Creates a new `SourceMapGenerator` from an existing `SourceMapConsumer` instance.
572 Creates a SourceNode from generated code and a SourceMapConsumer.
582 var consumer = new SourceMapConsumer(fs.readFileSync("path/to/my-file.js.map", "utf8"));