Lines Matching refs:SourceMapConsumer

14 function SourceMapConsumer(aSourceMap, aSourceMapURL) {  class
25 SourceMapConsumer.fromSourceMap = function(aSourceMap, aSourceMapURL) {
32 SourceMapConsumer.prototype._version = 3;
64 SourceMapConsumer.prototype.__generatedMappings = null;
65 Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {
77 SourceMapConsumer.prototype.__originalMappings = null;
78 Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {
90 SourceMapConsumer.prototype._charIsMappingSeparator =
101 SourceMapConsumer.prototype._parseMappings =
106 SourceMapConsumer.GENERATED_ORDER = 1;
107 SourceMapConsumer.ORIGINAL_ORDER = 2;
109 SourceMapConsumer.GREATEST_LOWER_BOUND = 1;
110 SourceMapConsumer.LEAST_UPPER_BOUND = 2;
128 SourceMapConsumer.prototype.eachMapping =
131 var order = aOrder || SourceMapConsumer.GENERATED_ORDER;
135 case SourceMapConsumer.GENERATED_ORDER:
138 case SourceMapConsumer.ORIGINAL_ORDER:
182 SourceMapConsumer.prototype.allGeneratedPositionsFor =
252 exports.SourceMapConsumer = SourceMapConsumer;
348 BasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
349 BasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;
659 util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
804 util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
920 consumer: new SourceMapConsumer(util.getArg(s, 'map'), aSourceMapURL)
925 IndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
926 IndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;