Home
last modified time | relevance | path

Searched refs:leadingComments (Results 1 – 2 of 2) sorted by relevance

/plugin/asciidocjs/node_modules/babylon/lib/
Dindex.js535 this.leadingComments = []; property
4495 this.state.leadingComments.push(comment);
4548 if (firstChild && this.state.leadingComments.length > 0) {
4549 var lastComment = last(this.state.leadingComments);
4554 for (j = 0; j < this.state.leadingComments.length; j++) {
4555 if (this.state.leadingComments[j].end < this.state.commentPreviousNode.end) {
4556 this.state.leadingComments.splice(j, 1);
4561 if (this.state.leadingComments.length > 0) {
4562 firstChild.trailingComments = this.state.leadingComments;
4563 this.state.leadingComments = [];
[all …]
/plugin/asciidocjs/node_modules/@types/babel-types/
Dindex.d.ts39 leadingComments?: Comment[] | undefined; property