We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52c995f commit 666513aCopy full SHA for 666513a
1 file changed
src/utils/comment.js
@@ -35,6 +35,9 @@ var comment = function(ast) {
35
this.annotations.push(child);
36
} else {
37
var name = child.kind.toLowerCase();
38
+ if (typeof child.name === 'string') {
39
+ name = child.name.toLowerCase();
40
+ }
41
if (!this.tags.hasOwnProperty(name)) {
42
this.tags[name] = [];
43
}
0 commit comments