You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
414 B
JavaScript
26 lines
414 B
JavaScript
5 years ago
|
'use strict';
|
||
|
|
||
|
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 = line;
|
||
|
};
|
||
|
|
||
|
// Inherit from `Node`.
|
||
|
Text.prototype = Object.create(Node.prototype);
|
||
|
Text.prototype.constructor = Text;
|
||
|
|
||
|
Text.prototype.type = 'Text';
|
||
|
|
||
|
/**
|
||
|
* Flag as text.
|
||
|
*/
|
||
|
|
||
|
Text.prototype.isText = true;
|