From: Alan Knowles Date: Tue, 23 Aug 2011 04:00:33 +0000 (+0800) Subject: JSDOC/Token.js X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=f521243fcd959ce46f62522094e69bfa3ed46e75 JSDOC/Token.js --- diff --git a/JSDOC/Token.js b/JSDOC/Token.js index 465d70e..7c15b20 100644 --- a/JSDOC/Token.js +++ b/JSDOC/Token.js @@ -59,12 +59,14 @@ Token = XObject.define( lvl = lvl || 0; var ret = this.data ; + + if (this.items) { var ar = []; - Roo.each(this.items, function(ai) { + this.items.forEach( function(ai) { var str = ''; - Roo.each(ai, function(it) { + ai.forEach( function(it) { str += it.toRaw(lvl + 1); }) ar.push(str); @@ -76,7 +78,7 @@ Token = XObject.define( if (this.props) { for (var i in this.props) { ret += this.props[i].key.toRaw(lvl+1) + ' : '; - Roo.each(this.props[i].val, function(e) { + this.props[i].val.forEach( function(e) { ret+=e.toRaw(lvl+1); })