Lines Matching refs:SourceMapConsumer

63 	exports.SourceMapConsumer = __webpack_require__(7).SourceMapConsumer;
1440 function SourceMapConsumer(aSourceMap, aSourceMapURL) {
1451 SourceMapConsumer.fromSourceMap = function(aSourceMap, aSourceMapURL) {
1458 SourceMapConsumer.prototype._version = 3;
1490 SourceMapConsumer.prototype.__generatedMappings = null;
1491 Object.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {
1503 SourceMapConsumer.prototype.__originalMappings = null;
1504 Object.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {
1516 SourceMapConsumer.prototype._charIsMappingSeparator =
1527 SourceMapConsumer.prototype._parseMappings =
1532 SourceMapConsumer.GENERATED_ORDER = 1;
1533 SourceMapConsumer.ORIGINAL_ORDER = 2;
1535 SourceMapConsumer.GREATEST_LOWER_BOUND = 1;
1536 SourceMapConsumer.LEAST_UPPER_BOUND = 2;
1554 SourceMapConsumer.prototype.eachMapping =
1557 var order = aOrder || SourceMapConsumer.GENERATED_ORDER;
1561 case SourceMapConsumer.GENERATED_ORDER:
1564 case SourceMapConsumer.ORIGINAL_ORDER:
1608 SourceMapConsumer.prototype.allGeneratedPositionsFor =
1678 exports.SourceMapConsumer = SourceMapConsumer;
1774 BasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
1775 BasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;
2085 util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
2230 util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND)
2346 consumer: new SourceMapConsumer(util.getArg(s, 'map'), aSourceMapURL)
2351 IndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);
2352 IndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;