nextLine()

in jsdoc/services/parser-adapters/html-block-parser-adapter.js [15:28]


    nextLine(line, lineNumber) {
      if (this.tagDepth === 0 && this.lines[lineNumber - 1] === '') {
        const m = TAG_REGEXP.exec(line);
        if (m && this.voidTags.indexOf(m[1]) === -1) {
          this.currentTag = m[1];
        }
      }
      if (this.currentTag) {
        this.tagDepth = this.tagDepth + countTags(line, '<' + this.currentTag) - countTags(line, '</' + this.currentTag);
      }
      if (this.tagDepth === 0) {
        this.currentTag = null;
      }
    },