Sha256: 10b41a02ff033cb29c012427503fd22b11dbab68d2d7da41fcaff3bcfce38cd8

Contents?: true

Size: 1.08 KB

Versions: 41

Compression:

Stored size: 1.08 KB

Contents

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

/**
 * Module dependencies.
 */

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

/**
 * Initialize a new `UnaryOp` with `op`, and `expr`.
 *
 * @param {String} op
 * @param {Node} expr
 * @api public
 */

var UnaryOp = module.exports = function UnaryOp(op, expr){
  Node.call(this);
  this.op = op;
  this.expr = expr;
};

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

UnaryOp.prototype.__proto__ = Node.prototype;

/**
 * Return a clone of this node.
 * 
 * @return {Node}
 * @api public
 */

UnaryOp.prototype.clone = function(parent){
  var clone = new UnaryOp(this.op);
  clone.expr = this.expr.clone(parent, clone);
  clone.lineno = this.lineno;
  clone.column = this.column;
  clone.filename = this.filename;
  return clone;
};

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

UnaryOp.prototype.toJSON = function(){
  return {
    __type: 'UnaryOp',
    op: this.op,
    expr: this.expr,
    lineno: this.lineno,
    column: this.column,
    filename: this.filename
  };
};

Version data entries

41 entries across 22 versions & 3 rubygems

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