UNPKG

jsctags

Version:
17 lines (12 loc) 249 B
function Foo(x) { this.x = x; this.y = [1]; } Foo; //: fn(x: bool) Foo.prototype = { makeString: function() { return "hi"; }, bar: 13 }; var z = new Foo(true); //:: {x: bool, y: [number]} z.toString; //: fn() -> string z.bar; //: number