Source: tags/this.js

/** @constructor */
function Greeter(name) {
    setName.apply(this, name);
}

/** @this Greeter */
function setName(name) {
    /** document me */
    this.name = name;
}
THIS IS A DEMO: All content was generated with examples taken from the JSDoc page.