Mark undocumented doclets as undocumented

To give other plugins access to doclets that are not part of
the API, we have to mark them undocumented instead of removing
them. They will be removed by JSDoc before publishing anyway.
This commit is contained in:
Andreas Hocevar
2014-05-01 16:41:15 +02:00
parent 8e387f385a
commit d6722ddc6f

View File

@@ -69,7 +69,7 @@ exports.handlers = {
doclet.hideConstructor = true; doclet.hideConstructor = true;
} else { } else {
// Remove all other undocumented symbols // Remove all other undocumented symbols
doclets.splice(i, 1); doclet.undocumented = true;
} }
} }
} }