24 lines
505 B
JavaScript
24 lines
505 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var Node = require('./node');
|
||
|
|
||
|
/**
|
||
|
* Initialize a `Comment` with the given `val`, optionally `buffer`,
|
||
|
* otherwise the comment may render in the output.
|
||
|
*
|
||
|
* @param {String} val
|
||
|
* @param {Boolean} buffer
|
||
|
* @api public
|
||
|
*/
|
||
|
|
||
|
var Comment = module.exports = function Comment(val, buffer) {
|
||
|
this.val = val;
|
||
|
this.buffer = buffer;
|
||
|
};
|
||
|
|
||
|
// Inherit from `Node`.
|
||
|
Comment.prototype = Object.create(Node.prototype);
|
||
|
Comment.prototype.constructor = Comment;
|
||
|
|
||
|
Comment.prototype.type = 'Comment';
|