Sha256: 201b8328b75093f6dec4b078d090d9763e8bbdaf3b77663fbce3e81cb4828b5a
Contents?: true
Size: 565 Bytes
Versions: 43
Compression:
Stored size: 565 Bytes
Contents
/*! * Jade - nodes - BlockComment * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node'); /** * Initialize a `BlockComment` with the given `block`. * * @param {String} val * @param {Block} block * @param {Boolean} buffer * @api public */ var BlockComment = module.exports = function BlockComment(val, block, buffer) { this.block = block; this.val = val; this.buffer = buffer; }; /** * Inherit from `Node`. */ BlockComment.prototype.__proto__ = Node.prototype;
Version data entries
43 entries across 43 versions & 2 rubygems