fix cli breakage

This commit is contained in:
Jeff Williams 2017-07-15 13:23:50 -07:00
parent e370dc1fa9
commit 77bd47f58a
2 changed files with 3 additions and 5 deletions

2
cli.js
View File

@ -374,8 +374,6 @@ cli.parseFiles = function() {
packageDocs.files = env.sourceFiles || [];
docs.push(packageDocs);
logger.debug('Indexing doclets...');
borrow.indexAll(docs);
logger.debug('Adding inherited symbols, mixins, and interface implementations...');
augment.augmentAll(docs);
logger.debug('Adding borrowed doclets...');

View File

@ -505,7 +505,7 @@ function augment(doclets, propertyName, docletFinder) {
* calling this method creates a new doclet for `ClassB#myMethod`.
*
* @param {!Array.<module:jsdoc/doclet.Doclet>} doclets - The doclets generated by JSDoc.
* @param {!Object} doclets.index - The doclet index added by {@link module:jsdoc/borrow.indexAll}.
* @param {!Object} doclets.index - The doclet index.
* @return {void}
*/
exports.addInherited = function(doclets) {
@ -524,7 +524,7 @@ exports.addInherited = function(doclets) {
* creates a new doclet for the instance method `ClassA#myMethod`.
*
* @param {!Array.<module:jsdoc/doclet.Doclet>} doclets - The doclets generated by JSDoc.
* @param {!Object} doclets.index - The doclet index added by {@link module:jsdoc/borrow.indexAll}.
* @param {!Object} doclets.index - The doclet index.
* @return {void}
*/
exports.addMixedIn = function(doclets) {
@ -545,7 +545,7 @@ exports.addMixedIn = function(doclets) {
* generate a new doclet that reflects the interface's documentation for `InterfaceA#myMethod`.
*
* @param {!Array.<module:jsdoc/doclet.Doclet>} docs - The doclets generated by JSDoc.
* @param {!Object} doclets.index - The doclet index added by {@link module:jsdoc/borrow.indexAll}.
* @param {!Object} doclets.index - The doclet index.
* @return {void}
*/
exports.addImplemented = function(doclets) {