Skip to content

Instantly share code, notes, and snippets.

@micmath
Created June 7, 2013 16:02
/** @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