82f2b76e25
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.shareCommentsWithSiblings = shareCommentsWithSiblings;
|
|
exports.addComment = addComment;
|
|
exports.addComments = addComments;
|
|
function shareCommentsWithSiblings() {
|
|
if (typeof this.key === "string") return;
|
|
|
|
var node = this.node;
|
|
if (!node) return;
|
|
|
|
var trailing = node.trailingComments;
|
|
var leading = node.leadingComments;
|
|
if (!trailing && !leading) return;
|
|
|
|
var prev = this.getSibling(this.key - 1);
|
|
var next = this.getSibling(this.key + 1);
|
|
|
|
if (!prev.node) prev = next;
|
|
if (!next.node) next = prev;
|
|
|
|
prev.addComments("trailing", leading);
|
|
next.addComments("leading", trailing);
|
|
}
|
|
|
|
function addComment(type, content, line) {
|
|
this.addComments(type, [{
|
|
type: line ? "CommentLine" : "CommentBlock",
|
|
value: content
|
|
}]);
|
|
}
|
|
|
|
function addComments(type, comments) {
|
|
if (!comments) return;
|
|
|
|
var node = this.node;
|
|
if (!node) return;
|
|
|
|
var key = type + "Comments";
|
|
|
|
if (node[key]) {
|
|
node[key] = node[key].concat(comments);
|
|
} else {
|
|
node[key] = comments;
|
|
}
|
|
} |