Lines Matching full:consumer
211 var consumer = new sourceMap.SourceMapConsumer(rawSourceMapJsonData);
221 consumer.allGeneratedPositionsFor({ line: 2, source: "foo.coffee" })
229 consumer.computeColumnSpans();
232 consumer.allGeneratedPositionsFor({ line: 2, source: "foo.coffee" })
279 consumer.originalPositionFor({ line: 2, column: 10 })
285 consumer.originalPositionFor({ line: 99999999999999999, column: 999999999999999 })
315 consumer.generatedPositionFor({ source: "example.js", line: 2, column: 10 })
348 consumer.allGeneratedpositionsfor({ line: 2, source: "foo.coffee" })
363 `consumer.sourceContentFor(s)` will succeed for every source `s` in
364 `consumer.sources`.
368 if (consumer.hasContentsOfAllSources()) {
369 consumerReadyCallback(consumer);
371 fetchSources(consumer, consumerReadyCallback);
386 consumer.sources
389 consumer.sourceContentFor("my-cool-lib.clj")
392 consumer.sourceContentFor("this is not in the source map");
395 consumer.sourceContentFor("this is not in the source map", true);
418 consumer.eachMapping(function (m) { console.log(m); })
467 var generator = sourceMap.SourceMapGenerator.fromSourceMap(consumer);
582 var consumer = new SourceMapConsumer(fs.readFileSync("path/to/my-file.js.map", "utf8"));
584 consumer);