Skip to content

Instantly share code, notes, and snippets.

@micmath
Created June 7, 2013 16:02
Show Gist options
  • Save micmath/5730364 to your computer and use it in GitHub Desktop.
Save micmath/5730364 to your computer and use it in GitHub Desktop.
/** @class */
function A () {
}
/** Document me
@abstract
*/
A.prototype.m = function () {}
/**
@class
@extends A
*/
function B () {
}
// no comment
B.prototype.m = function () {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment