TypeScript/tests
Nathan Shively-Sanders 517d6eea28
Get jsdoc host from chained assignment (#36111)
* Get jsdoc host from chained assignment

getSourceOfAssignment previously only checked one level of binary
expression instead of following binary expressions all the way to the
right. This meant that binding of `@constructor` would fail in the
following example:

```js
/** @constructor */
a = b = function () { }
```

* cleanup lint

* use existing utility
2020-01-10 10:09:39 -08:00
..
baselines/reference Get jsdoc host from chained assignment (#36111) 2020-01-10 10:09:39 -08:00
cases Get jsdoc host from chained assignment (#36111) 2020-01-10 10:09:39 -08:00
lib
projects