Open
Description
If we have the following mappings, should we generate them all in the source map or only the most specific mapping?
map.addMapping({
generated: { line: 3, column: 5 }
});
map.addMapping({
generated: { line: 3, column: 5 },
original: { line: 6, column: 7 },
source: 'foo.js'
});
map.addMapping({
generated: { line: 3, column: 5 },
original: { line: 6, column: 7 },
source: 'foo.js',
name: 'bar'
});
What should be the behavior if there is different original locations for the same generated position? Should we still use the most specific/detailed mapping and ignore the others?