class Comment {
constructor(start, end, text, fulltext) {
this.start = start;
this.end = end;
this.text = text;
this.fulltext = fulltext;
}