ast.find(j.CallExpression)
        .filter(node => node.value.callee.name === variableName)
        .forEach(node => {
          const parent = node.parentPath.parentPath;