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 9a4d690 commit 6b4d528Copy full SHA for 6b4d528
utils/doclint/generateApiJson.js
@@ -49,7 +49,7 @@ function serialize(documentation) {
49
* @param {Documentation.Class} clazz
50
*/
51
function serializeClass(clazz) {
52
- const result = { name: clazz.name };
+ const result = { name: clazz.name, spec: clazz.spec };
53
if (clazz.extends)
54
result.extends = clazz.extends;
55
result.langs = clazz.langs;
@@ -88,7 +88,6 @@ function sanitize(result) {
88
delete result.argsArray;
89
delete result.clazz;
90
delete result.enclosingMethod;
91
- delete result.spec;
92
}
93
94
/**
0 commit comments