fix CallExpression detection

This commit is contained in:
dakkar 2024-10-16 14:13:05 +01:00
parent 82674d8718
commit dba3277200
2 changed files with 8 additions and 3 deletions

View file

@ -40,9 +40,13 @@ function walkDown(locale, path) {
* to the MemberExpressions
*/
function findCallExpression(node) {
if (node.type === 'CallExpression') return node
if (node.parent?.type === 'CallExpression') return node.parent;
if (node.parent?.type === 'MemberExpression') return findCallExpression(node.parent);
if (!node.parent) return null;
// the second half of this guard protects from cases like
// `foo(one.two.three)` where the CallExpression is parent of the
// MemberExpressions, but via `arguments`, not `callee`
if (node.parent.type === 'CallExpression' && node.parent.callee === node) return node.parent;
if (node.parent.type === 'MemberExpression') return findCallExpression(node.parent);
return null;
}