数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
553 B

2 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MirrorMap = void 0;
const SourceMaps = require("@volar/source-map");
class MirrorMap extends SourceMaps.SourceMap {
*findMirrorOffsets(start) {
for (const mapped of this.toGeneratedOffsets(start)) {
yield [mapped[0], mapped[1].data[1]];
}
for (const mapped of this.toSourceOffsets(start)) {
yield [mapped[0], mapped[1].data[0]];
}
}
}
exports.MirrorMap = MirrorMap;
//# sourceMappingURL=sourceMaps.js.map