init add. warning: it can't run!

This commit is contained in:
life
2014-09-17 17:01:04 +08:00
parent 94d36ffac4
commit df77220e51
1154 changed files with 285172 additions and 0 deletions

43
node_modules/jade/lib/nodes/case.js generated vendored Executable file
View File

@@ -0,0 +1,43 @@
/*!
* 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.__proto__ = Node.prototype;
var When = exports.When = function When(expr, block){
this.expr = expr;
this.block = block;
this.debug = false;
};
/**
* Inherit from `Node`.
*/
When.prototype.__proto__ = Node.prototype;