summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-17 12:01:03 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-17 12:01:03 -0800
commitf37efa9f0d4085ac21b528135184517e6c4e4cb3 (patch)
tree076055c5996454c5ad08be08c96d75918df4098b /js
parent94fe2650b080b9511d7fbe7f64c02326e90d319a (diff)
Fixed linter errors.
Diffstat (limited to 'js')
-rw-r--r--js/lib/node.js14
1 files changed, 7 insertions, 7 deletions
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', {