UNPKG

generator-egress

Version:
47 lines (36 loc) 936 B
/*! * Jade - nodes - Case * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node'); /** * Initialize a new `Case` with `expr`. * * @param {String} expr * @api public */ var Case = exports = module.exports = function Case(expr, block){ this.expr = expr; this.block = block; }; /** * Inherit from `Node`. */ Case.prototype = Object.create(Node.prototype); Case.prototype.constructor = Case; Case.prototype.constructor.name = 'Case'; // prevent the minifiers removing this var When = exports.When = function When(expr, block){ this.expr = expr; this.block = block; this.debug = false; }; /** * Inherit from `Node`. */ When.prototype = Object.create(Node.prototype); When.prototype.constructor = When; When.prototype.constructor.name = 'When'; // prevent the minifiers removing this