Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/5259
/
.
/
node_modules
/
postcss
/
lib
/
comment.js
blob: c56650645caed3bb47cf7a39d18696ec47140ca3 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
let
Node
=
require
(
'./node'
)
class
Comment
extends
Node
{
constructor
(
defaults
)
{
super
(
defaults
)
this
.
type
=
'comment'
}
}
module
.
exports
=
Comment
Comment
.
default
=
Comment