From 232c2efe95164e23c601089a936d8d268d7e02ae Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 13 May 2010 15:19:55 +0800 Subject: [PATCH] JSDOC/Introspect.js --- JSDOC/Introspect.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/JSDOC/Introspect.js b/JSDOC/Introspect.js index 4bbda6c..b54455f 100644 --- a/JSDOC/Introspect.js +++ b/JSDOC/Introspect.js @@ -236,6 +236,10 @@ Object.extend(Introspect, { var n = getAttribute(element, 'name') ; //console.log("WALK" + n); + if (element.name == 'signal') { + path += '.signal'; + } + if (n) { path += path.length ? '.' : ''; path += n; @@ -243,9 +247,6 @@ Object.extend(Introspect, { if (element.name == 'return-value') { path += '.return-value'; } - if (element.name == 'signal') { - path += '.signal'; - } var d = getAttribute(element,'doc'); if (d) { -- 2.39.2