cuiqian2004
2024-09-27 2c523baaae59f4033f56b78128ffb62cf5a7eb38
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
 
let Node = require('./node')
 
class Comment extends Node {
  constructor(defaults) {
    super(defaults)
    this.type = 'comment'
  }
}
 
module.exports = Comment
Comment.default = Comment