```ts let f = (this: number) => 100; ``` Currently this gives an error on the `:` saying that `)` was expected. Instead, we should 1. Gracefully parse. 2. Give a grammar error saying that `this` parameters are not allowed in arrow functions. Source: a user ran into this hazard [here](http://stackoverflow.com/questions/41944650/this-implicitly-has-type-any-because-it-does-not-have-a-type-annotation?).