Sha256: c7edf6a36d9a41842059528b938dbd61ae6de6a0e978f35a8442d0739e9ed0ef

Contents?: true

Size: 522 Bytes

Versions: 38

Compression:

Stored size: 522 Bytes

Contents

/*!
 * Jade - nodes - Text
 * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
 * MIT Licensed
 */

/**
 * Module dependencies.
 */

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

/**
 * Initialize a `Text` node with optional `line`.
 *
 * @param {String} line
 * @api public
 */

var Text = module.exports = function Text(line) {
  this.val = '';
  if ('string' == typeof line) this.val = line;
};

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

Text.prototype.__proto__ = Node.prototype;

/**
 * Flag as text.
 */

Text.prototype.isText = true;

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
stylus-source-0.49.3 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
snowball-0.1.22 node_modules/jade/lib/nodes/text.js
stylus-source-0.42.2 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.42.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.42.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.41.3 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.41.2 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.41.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.41.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.40.3 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.40.2 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.40.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.40.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.39.4 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.39.3 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.39.2 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.39.1 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.39.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.38.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js
stylus-source-0.37.0 vendor/node_modules/mocha/node_modules/jade/lib/nodes/text.js