aboutsummaryrefslogtreecommitdiff
path: root/src/intertyper.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/intertyper.js')
-rw-r--r--src/intertyper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js
index 958bd5af..59eb5b55 100644
--- a/src/intertyper.js
+++ b/src/intertyper.js
@@ -331,7 +331,7 @@ function intertyper(data) {
intertype: 'function',
ident: item.tokens[1].text,
returnType: item.tokens[0],
- params: item.tokens[2],
+ params: parseParamTokens(item.tokens[2].item.tokens),
lineNum: item.lineNum,
}];
return ret;