fix comment that totally freaked out JSHint

this fixes a JSHint error that cannot be suppressed.
This commit is contained in:
Jeff Williams 2012-07-03 18:53:38 -07:00
parent a54b51e276
commit 366c33ffe6

View File

@ -234,7 +234,7 @@ exports.Parser.prototype.resolveThis = function(node) {
}
else {
if (node.enclosingFunction){
return this.resolveThis(node.enclosingFunction/*memberof.doclet.meta.code.val*/);
return this.resolveThis(node.enclosingFunction/* memberof.doclet.meta.code.val */);
}
else return ''; // TODO handle global this?
}