async compileComments()

in src/controller/commentCacheController.ts [97:110]


  async compileComments(guid: string, version: string) {
    const comments = await this.cache.getFromCache([guid, version]);
    let compiledComments = "";

    for (const filepath in comments) {
      for (const lineNumber in comments[filepath]) {
        compiledComments += CommentCacheController.getCommentString(
          filepath,
          lineNumber
        );
      }
    }
    return compiledComments;
  }