[example](http://coffeescript.org/#try:-%3E%0A%20%20await%20a%20b%0A%20%20.c): ```coffee await a b .c ``` current output: ```js (await a(b).c) ``` expected output: ```js (await a(b)).c ```