From f37efa9f0d4085ac21b528135184517e6c4e4cb3 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 17 Jan 2015 12:01:03 -0800 Subject: Fixed linter errors. --- js/lib/node.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'js/lib/node.js') diff --git a/js/lib/node.js b/js/lib/node.js index bb6161c..4615689 100644 --- a/js/lib/node.js +++ b/js/lib/node.js @@ -93,31 +93,31 @@ Node.prototype.isContainer = function() { }; Object.defineProperty(proto, 'type', { - get: function() { return this._type; }, + get: function() { return this._type; } }); Object.defineProperty(proto, 'firstChild', { - get: function() { return this._firstChild; }, + get: function() { return this._firstChild; } }); Object.defineProperty(proto, 'lastChild', { - get: function() { return this._lastChild; }, + get: function() { return this._lastChild; } }); Object.defineProperty(proto, 'next', { - get: function() { return this._next; }, + get: function() { return this._next; } }); Object.defineProperty(proto, 'prev', { - get: function() { return this._prev; }, + get: function() { return this._prev; } }); Object.defineProperty(proto, 'parent', { - get: function() { return this._parent; }, + get: function() { return this._parent; } }); Object.defineProperty(proto, 'sourcepos', { - get: function() { return this._sourcepos; }, + get: function() { return this._sourcepos; } }); Object.defineProperty(proto, 'literal', { -- cgit v1.2.3