jsdoc: remove comments that Rhino bugs out on.

This commit is contained in:
Jonathan Puckey 2011-06-01 19:46:39 +02:00
parent 33ad03af5d
commit 0c6a91a789

View file

@ -14,8 +14,8 @@ JSDOC.TokenReader = function() {
*/
JSDOC.TokenReader.prototype.tokenize = function(/**JSDOC.TextStream*/stream) {
var tokens = [];
/**@ignore*/ tokens.last = function() { return tokens[tokens.length-1]; }
/**@ignore*/ tokens.lastSym = function() {
tokens.last = function() { return tokens[tokens.length-1]; }
tokens.lastSym = function() {
for (var i = tokens.length-1; i >= 0; i--) {
if (!(tokens[i].is("WHIT") || tokens[i].is("COMM"))) return tokens[i];
}