123456789101112131415161718192021222324252627282930313233343536 |
- var Attrs = require('./attrs');
- var Mixin = module.exports = function Mixin(name, args, block, call){
- this.name = name;
- this.args = args;
- this.block = block;
- this.attrs = [];
- this.call = call;
- };
- Mixin.prototype.__proto__ = Attrs.prototype;
|