MCPcopy Index your code
hub / github.com/QwikDev/qwik / addMembers

Function addMembers

scripts/api-docs.ts:155–168  ·  view source on GitHub ↗
(apiExtract: any, hierarchyStr: string)

Source from the content-addressed store, hash-verified

153 }
154
155 function addMembers(apiExtract: any, hierarchyStr: string) {
156 if (Array.isArray(apiExtract?.members)) {
157 for (const member of apiExtract.members) {
158 addMembers(member, hierarchyStr + '/' + member.name);
159 if (member.kind === 'Package' || member.kind === 'EntryPoint') {
160 continue;
161 }
162 if (apiData.members.some((m) => member.name === m.name && member.kind === m.kind)) {
163 continue;
164 }
165 addMember(member, hierarchyStr);
166 }
167 }
168 }
169
170 addMembers(apiExtractedJson, '');
171

Callers 1

createApiDataFunction · 0.85

Calls 1

addMemberFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…