2016-06-17 20:25:44 +02:00
|
|
|
'use strict';
|
|
|
|
|
2016-06-19 19:16:40 +02:00
|
|
|
const AbstractList = require('./abstract_list.js');
|
2016-06-17 20:25:44 +02:00
|
|
|
const Comment = require('./comment.js');
|
|
|
|
|
2016-06-19 19:16:40 +02:00
|
|
|
class CommentList extends AbstractList {
|
2016-06-17 20:25:44 +02:00
|
|
|
}
|
|
|
|
|
2016-06-19 19:16:40 +02:00
|
|
|
CommentList._itemClass = Comment;
|
|
|
|
CommentList._itemName = 'comment';
|
|
|
|
|
2016-06-17 20:25:44 +02:00
|
|
|
module.exports = CommentList;
|