mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
jsdoc: remove comments that Rhino bugs out on.
This commit is contained in:
parent
33ad03af5d
commit
0c6a91a789
1 changed files with 2 additions and 2 deletions
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue