UNPKG

jsctags

Version:
13 lines (10 loc) 226 B
function Bar() { this.prop = 10; } Bar.prototype.hallo = function() { this; //: Bar this.prop; //: number }; Bar.prototype.fn2 = function() { this; //: Date }; Date.prototype.fn2 = Bar.prototype.fn2; new Date().fn2();