123456789101112131415161718192021222324252627282930313233343536 |
- var Node = require('./node');
- var Text = module.exports = function Text(line) {
- this.val = '';
- if ('string' == typeof line) this.val = line;
- };
- Text.prototype.__proto__ = Node.prototype;
- Text.prototype.isText = true;
|