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

Version Path
stylus-source-0.36.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.36.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.35.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.35.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.34.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.34.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.33.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.33.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.32.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.32.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.31.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.30.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.30.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.29.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.28.2 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.28.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.28.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.27.2 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.27.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js
stylus-source-0.27.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/block-comment.js