spadgos / sublime-jsdocs

Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++
MIT License
3.11k stars 278 forks source link

Support ES6 constructor syntax #460

Open vihanb opened 6 years ago

vihanb commented 6 years ago

JavaScript ES6 classes have constructor which seems to get a @return this tag isn't needed on the constructor():

class Foo {
     constructor() {}
}