Sha256: f0f3fd2c3d8ee57e2e4f8f05091577ce95235f39085c96db043dceca7d326398

Contents?: true

Size: 1.01 KB

Versions: 41

Compression:

Stored size: 1.01 KB

Contents

/*!
 * Stylus - Comment
 * Copyright (c) Automattic <developer.wordpress.com>
 * MIT Licensed
 */

/**
 * Module dependencies.
 */

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

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

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

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

Comment.prototype.__proto__ = Node.prototype;

/**
 * Return a JSON representation of this node.
 *
 * @return {Object}
 * @api public
 */

Comment.prototype.toJSON = function(){
  return {
    __type: 'Comment',
    str: this.str,
    suppress: this.suppress,
    inline: this.inline,
    lineno: this.lineno,
    column: this.column,
    filename: this.filename
  };
};

/**
 * Return comment.
 *
 * @return {String}
 * @api public
 */

Comment.prototype.toString = function(){
  return this.str;
};

Version data entries

41 entries across 22 versions & 3 rubygems

Version Path
epuber-stylus-source-0.56.0 vendor/lib/nodes/comment.js
epuber-stylus-source-0.54.8 vendor/lib/nodes/comment.js
ela-4.1.6 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-4.1.6 node_modules/stylus/lib/nodes/comment.js
ela-4.1.5 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-4.1.5 node_modules/stylus/lib/nodes/comment.js
ela-4.1.4 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-4.1.4 node_modules/stylus/lib/nodes/comment.js
ela-4.1.3 node_modules/stylus/lib/nodes/comment.js
ela-4.1.3 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-4.1.2 node_modules/stylus/lib/nodes/comment.js
ela-4.1.2 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-4.1.1 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-4.1.1 node_modules/stylus/lib/nodes/comment.js
ela-4.1.0 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-4.1.0 node_modules/stylus/lib/nodes/comment.js
ela-4.0.0 node_modules/stylus/lib/nodes/comment.js
ela-4.0.0 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-3.4.3 node_modules/nib/node_modules/stylus/lib/nodes/comment.js
ela-3.4.3 node_modules/stylus/lib/nodes/comment.js