text.js 522 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*!
  2. * Jade - nodes - Text
  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 `Text` node with optional `line`.
  12. *
  13. * @param {String} line
  14. * @api public
  15. */
  16. var Text = module.exports = function Text(line) {
  17. this.val = '';
  18. if ('string' == typeof line) this.val = line;
  19. };
  20. /**
  21. * Inherit from `Node`.
  22. */
  23. Text.prototype.__proto__ = Node.prototype;
  24. /**
  25. * Flag as text.
  26. */
  27. Text.prototype.isText = true;