comment.js 557 B

1234567891011121314151617181920212223242526272829303132
  1. /*!
  2. * Jade - nodes - Comment
  3. * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
  4. * MIT Licensed
  5. */
  6. /**
  7. * Module dependencies.
  8. */
  9. var Node = require('./node');
  10. /**
  11. * Initialize a `Comment` with the given `val`, optionally `buffer`,
  12. * otherwise the comment may render in the output.
  13. *
  14. * @param {String} val
  15. * @param {Boolean} buffer
  16. * @api public
  17. */
  18. var Comment = module.exports = function Comment(val, buffer) {
  19. this.val = val;
  20. this.buffer = buffer;
  21. };
  22. /**
  23. * Inherit from `Node`.
  24. */
  25. Comment.prototype.__proto__ = Node.prototype;