Consider this code: ` var x = function() { return 2; }.bind(this); ` This incorrectly becomes `const x = () => 2.bind(this);`.