Found in #4445
Parameters in parenthesis-wrapped function expressions in ExportDefaultDeclarations are being incorrectly flagged as exports.
// correct: `a` is not flagged as exported
export default function (a) { }
// incorrect: `a` is flagged as exported
export default (function(a) {});
