Searched refs:newSourceArray (Results 1 – 1 of 1) sorted by relevance
| /interface/sdk-js/build-tools/jsdoc_format_plugin/src/core/ |
| D | coreImpls.ts | 561 const newSourceArray: Array<comment.CommentSource> = []; constant 585 newSourceArray.push(source); 588 newSourceArray.splice(0, 0, { number: 0, source: '', tokens: this.getCommentStartToken() }); 589 const lastSource = newSourceArray[newSourceArray.length - 1]; constant 592 this.addNewEmptyLineIfNeeded(newSourceArray, lastSource); 593 this.addTags(newSourceArray, commentTags); 596 newSourceArray.push({ number: 0, source: '', tokens: this.getCommentEndToken() }); 598 parsedComment.source = newSourceArray; 602 …private addNewEmptyLineIfNeeded(newSourceArray: Array<comment.CommentSource>, lastSource: comment.… 605 newSourceArray.push({ number: 0, source: '', tokens: this.getNewLineToken() }); [all …]
|