123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- /*!
- * Stylus - Node
- * Copyright (c) Automattic <developer.wordpress.com>
- * MIT Licensed
- */
- /**
- * Module dependencies.
- */
- var Evaluator = require('../visitor/evaluator')
- , utils = require('../utils')
- , nodes = require('./');
- /**
- * Initialize a new `CoercionError` with the given `msg`.
- *
- * @param {String} msg
- * @api private
- */
- function CoercionError(msg) {
- this.name = 'CoercionError'
- this.message = msg
- if (Error.captureStackTrace) {
- Error.captureStackTrace(this, CoercionError);
- }
- }
- /**
- * Inherit from `Error.prototype`.
- */
- CoercionError.prototype.__proto__ = Error.prototype;
- /**
- * Node constructor.
- *
- * @api public
- */
- var Node = module.exports = function Node(){
- this.lineno = nodes.lineno || 1;
- this.column = nodes.column || 1;
- this.filename = nodes.filename;
- };
- Node.prototype = {
- constructor: Node,
- /**
- * Return this node.
- *
- * @return {Node}
- * @api public
- */
- get first() {
- return this;
- },
- /**
- * Return hash.
- *
- * @return {String}
- * @api public
- */
- get hash() {
- return this.val;
- },
- /**
- * Return node name.
- *
- * @return {String}
- * @api public
- */
- get nodeName() {
- return this.constructor.name.toLowerCase();
- },
- /**
- * Return this node.
- *
- * @return {Node}
- * @api public
- */
- clone: function(){
- return this;
- },
- /**
- * Return a JSON representation of this node.
- *
- * @return {Object}
- * @api public
- */
- toJSON: function(){
- return {
- lineno: this.lineno,
- column: this.column,
- filename: this.filename
- };
- },
- /**
- * Nodes by default evaluate to themselves.
- *
- * @return {Node}
- * @api public
- */
- eval: function(){
- return new Evaluator(this).evaluate();
- },
- /**
- * Return true.
- *
- * @return {Boolean}
- * @api public
- */
- toBoolean: function(){
- return nodes.true;
- },
- /**
- * Return the expression, or wrap this node in an expression.
- *
- * @return {Expression}
- * @api public
- */
- toExpression: function(){
- if ('expression' == this.nodeName) return this;
- var expr = new nodes.Expression;
- expr.push(this);
- return expr;
- },
- /**
- * Return false if `op` is generally not coerced.
- *
- * @param {String} op
- * @return {Boolean}
- * @api private
- */
- shouldCoerce: function(op){
- switch (op) {
- case 'is a':
- case 'in':
- case '||':
- case '&&':
- return false;
- default:
- return true;
- }
- },
- /**
- * Operate on `right` with the given `op`.
- *
- * @param {String} op
- * @param {Node} right
- * @return {Node}
- * @api public
- */
- operate: function(op, right){
- switch (op) {
- case 'is a':
- if ('string' == right.first.nodeName) {
- return nodes.Boolean(this.nodeName == right.val);
- } else {
- throw new Error('"is a" expects a string, got ' + right.toString());
- }
- case '==':
- return nodes.Boolean(this.hash == right.hash);
- case '!=':
- return nodes.Boolean(this.hash != right.hash);
- case '>=':
- return nodes.Boolean(this.hash >= right.hash);
- case '<=':
- return nodes.Boolean(this.hash <= right.hash);
- case '>':
- return nodes.Boolean(this.hash > right.hash);
- case '<':
- return nodes.Boolean(this.hash < right.hash);
- case '||':
- return this.toBoolean().isTrue
- ? this
- : right;
- case 'in':
- var vals = utils.unwrap(right).nodes
- , len = vals && vals.length
- , hash = this.hash;
- if (!vals) throw new Error('"in" given invalid right-hand operand, expecting an expression');
- // 'prop' in obj
- if (1 == len && 'object' == vals[0].nodeName) {
- return nodes.Boolean(vals[0].has(this.hash));
- }
- for (var i = 0; i < len; ++i) {
- if (hash == vals[i].hash) {
- return nodes.true;
- }
- }
- return nodes.false;
- case '&&':
- var a = this.toBoolean()
- , b = right.toBoolean();
- return a.isTrue && b.isTrue
- ? right
- : a.isFalse
- ? this
- : right;
- default:
- if ('[]' == op) {
- var msg = 'cannot perform '
- + this
- + '[' + right + ']';
- } else {
- var msg = 'cannot perform'
- + ' ' + this
- + ' ' + op
- + ' ' + right;
- }
- throw new Error(msg);
- }
- },
- /**
- * Default coercion throws.
- *
- * @param {Node} other
- * @return {Node}
- * @api public
- */
- coerce: function(other){
- if (other.nodeName == this.nodeName) return other;
- throw new CoercionError('cannot coerce ' + other + ' to ' + this.nodeName);
- }
- };
|