decaffeinate is crashing on my CoffeeScript input: ```coffee class A "#{b}": => c ``` [(repl)](http://decaffeinate-project.org/repl/#?evaluate=true&stage=full&code=class%20A%0A%20%20%22%23%7Bb%7D%22%3A%20%3D%3E%20c) I get this error: ``` AddVariableDeclarationsStage failed to parse: Unexpected token (3:9) 1 | class A { 2 | constructor() { > 3 | this."#{b}" = this."#{b}".bind(this); | ^ 4 | } 5 | ```