mixin.js 580 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*!
  2. * Jade - nodes - Mixin
  3. * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
  4. * MIT Licensed
  5. */
  6. /**
  7. * Module dependencies.
  8. */
  9. var Attrs = require('./attrs');
  10. /**
  11. * Initialize a new `Mixin` with `name` and `block`.
  12. *
  13. * @param {String} name
  14. * @param {String} args
  15. * @param {Block} block
  16. * @api public
  17. */
  18. var Mixin = module.exports = function Mixin(name, args, block, call){
  19. this.name = name;
  20. this.args = args;
  21. this.block = block;
  22. this.attrs = [];
  23. this.call = call;
  24. };
  25. /**
  26. * Inherit from `Attrs`.
  27. */
  28. Mixin.prototype.__proto__ = Attrs.prototype;