9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
class Comment {
|
|
constructor(start, end, text, fulltext) {
|
|
this.start = start;
|
|
this.end = end;
|
|
this.text = text;
|
|
this.fulltext = fulltext;
|
|
}
|
|
}
|