You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
203 B

2 years ago
  1. 'use strict'
  2. let Node = require('./node')
  3. class Comment extends Node {
  4. constructor(defaults) {
  5. super(defaults)
  6. this.type = 'comment'
  7. }
  8. }
  9. module.exports = Comment
  10. Comment.default = Comment