123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- "use strict";
- import MOZ_SourceMap from "source-map";
- import {
- defaults,
- } from "./utils/index.js";
- async function SourceMap(options) {
- options = defaults(options, {
- file : null,
- root : null,
- orig : null,
- orig_line_diff : 0,
- dest_line_diff : 0,
- });
- var orig_map;
- var generator = new MOZ_SourceMap.SourceMapGenerator({
- file : options.file,
- sourceRoot : options.root
- });
- if (options.orig) {
- orig_map = await new MOZ_SourceMap.SourceMapConsumer(options.orig);
- orig_map.sources.forEach(function(source) {
- var sourceContent = orig_map.sourceContentFor(source, true);
- if (sourceContent) {
- generator.setSourceContent(source, sourceContent);
- }
- });
- }
- function add(source, gen_line, gen_col, orig_line, orig_col, name) {
- if (orig_map) {
- var info = orig_map.originalPositionFor({
- line: orig_line,
- column: orig_col
- });
- if (info.source === null) {
- return;
- }
- source = info.source;
- orig_line = info.line;
- orig_col = info.column;
- name = info.name || name;
- }
- generator.addMapping({
- generated : { line: gen_line + options.dest_line_diff, column: gen_col },
- original : { line: orig_line + options.orig_line_diff, column: orig_col },
- source : source,
- name : name
- });
- }
- return {
- add : add,
- get : function() { return generator; },
- toString : function() { return generator.toString(); },
- destroy : function () {
- if (orig_map && orig_map.destroy) {
- orig_map.destroy();
- }
- }
- };
- }
- export {
- SourceMap,
- };
|