Lines Matching refs:index
161 comments.forEach((comment, index) => {
162 if (!checkInfoMap[index]) {
163 checkInfoMap[index] = {
190 checkInfoMap[index].missingTags.push(tagName);
201 checkInfoMap[index].illegalTags.push({
204 index,
213 function checkTagsQuantity(comment, index, errorLogs) {
227 index,
236 index,
244 function checkTagValue(tag, index, node, fileName, errorLogs) {
259 valueCheckResult.index = index;
272 checkOrderResult.forEach((result, index) => {
273 checkInfoMap[index.toString()].orderResult = result;
275 comments.forEach((comment, index) => {
278 checkInheritTag(comment, node, sourcefile, fileName, index);
281 const checkAPIDecorator = checkAPITagName(tag, node, sourcefile, fileName, index);
285 checkTagValue(tag, index, node, fileName, errorLogs);
290 checkTagsQuantity(comment, index, errorLogs);
291 checkInfoMap[index.toString()].illegalTags = checkInfoMap[index.toString()].illegalTags.concat(errorLogs);