Sha256: c302252d856056947472ca9480d83d4e1bbe8727875896f5647f07de9c0971ca

Contents?: true

Size: 516 Bytes

Versions: 100

Compression:

Stored size: 516 Bytes

Contents

/*!
 * Stylus - Comment
 * Copyright(c) 2010 LearnBoost <dev@learnboost.com>
 * MIT Licensed
 */

/**
 * Module dependencies.
 */

var Node = require('./node');

/**
 * Initialize a new `Comment` with the given `str`.
 *
 * @param {String} str
 * @param {Boolean} suppress
 * @api public
 */

var Comment = module.exports = function Comment(str, suppress){
  Node.call(this);
  this.str = str;
  this.suppress = suppress;
};

/**
 * Inherit from `Node.prototype`.
 */

Comment.prototype.__proto__ = Node.prototype;

Version data entries

100 entries across 86 versions & 2 rubygems

Version Path
stylus-source-0.22.2 vendor/lib/nodes/comment.js
stylus-source-0.22.1 vendor/lib/nodes/comment.js
stylus-source-0.22.0 vendor/lib/nodes/comment.js
stylus-source-0.21.2 vendor/lib/nodes/comment.js
stylus-source-0.21.1 vendor/lib/nodes/comment.js
stylus-source-0.21.0 vendor/lib/nodes/comment.js
stylus-source-0.20.1 vendor/lib/nodes/comment.js
stylus-source-0.20.0 vendor/lib/nodes/comment.js
stylus-source-0.19.8 vendor/lib/nodes/comment.js
stylus-source-0.19.7 vendor/lib/nodes/comment.js
stylus-source-0.19.6 vendor/lib/nodes/comment.js
stylus-source-0.19.5 vendor/lib/nodes/comment.js
stylus-source-0.19.4 vendor/lib/nodes/comment.js
stylus-source-0.19.3 vendor/lib/nodes/comment.js
stylus-source-0.19.2 vendor/lib/nodes/comment.js
stylus-source-0.19.1 vendor/lib/nodes/comment.js
stylus-source-0.19.0 vendor/lib/nodes/comment.js
stylus-source-0.18.0 vendor/lib/nodes/comment.js
stylus-source-0.17.0 vendor/lib/nodes/comment.js
stylus-source-0.15.4 lib/stylus/nodes/comment.js