From 85157bf496f98f955ebfe2a8bfa285aff95d24a4 Mon Sep 17 00:00:00 2001 From: HifiExperiments Date: Thu, 7 Nov 2024 21:00:03 -0800 Subject: [PATCH] possible fix for missing jsdoc --- tools/jsdoc/plugins/hifi.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/jsdoc/plugins/hifi.js b/tools/jsdoc/plugins/hifi.js index 7a789e39ee..595d0bc9c4 100644 --- a/tools/jsdoc/plugins/hifi.js +++ b/tools/jsdoc/plugins/hifi.js @@ -71,7 +71,7 @@ exports.handlers = { ]; // only files with this extension will be searched for jsdoc comments. - var exts = ['.h', '.cpp']; + var exts = ['.h', '.h.in', '.cpp', '.cpp.in']; var fs = require('fs'); dirList.forEach(function (dir) { @@ -123,9 +123,9 @@ exports.handlers = { // Append an Available In: sentence at the beginning of the namespace description. if (rows.length > 0) { var availableIn = "

Supported Script Types: " + rows.join(" • ") + "

"; - + e.doclet.description = availableIn + (e.doclet.description ? e.doclet.description : ""); - } + } } if (e.doclet.kind === "function" && e.doclet.returns && e.doclet.returns[0].type