spadgos / sublime-jsdocs

Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support ES6 constructor syntax

vihanb opened this issue · comments

commented

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

class Foo {
     constructor() {}
}