1 2 3 4 5 6 7 8 9 10 11
"use strict"; const AbstractList = require("./abstract_list.js"); const Comment = require("./comment.js"); class CommentList extends AbstractList {} CommentList._itemClass = Comment; CommentList._itemName = "comment"; module.exports = CommentList;