Lines Matching refs:api
91 const api = parse(fileContentList);
92 return api;
149 apiArr.forEach(api => {
155 …if (api.dtsPath.replace(newDir, '') === newApi.dtsPath.replace(newDir, '') && api.className === ne…
156 …api.methodName === newApi.methodName && api.apiType === 'Method' && api.funType === newApi.funType…
157 if (sameNameFun.indexOf(newApi.methodText) < 0 && api.funType === 'callback') {
159 api.callbackMethodText = sameNameFun;
160 … } else if (sameNamePromiseText.indexOf(newApi.methodText) < 0 && api.funType === 'Promise') {
162 api.promiseMethodText = sameNamePromiseText;
163 } else if (!api.funType) {
165 api.note = number;
738 compileApiInfos.forEach(api => {
739 if (subsystem.subsystem === api.subsystem) {
740 diffInfos.push(api);
805 diffApis.map(api => diffApisSet.add(JSON.stringify(api)));