Welcome to mirror list, hosted at ThFree Co, Russian Federation.

memberof_constructor.js « test « app « jsdoc-toolkit « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cefd72d1baf85e92f87fa7ef37ce3ab15586a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** @constructor */
function Circle(){}

/**
	@constructor
	@memberOf Circle#
 */
Circle.prototype.Tangent = function(){};

// renaming Circle#Tangent to Circle#Circle#Tangent

/**
	@memberOf Circle#Tangent#
 */
Circle.prototype.Tangent.prototype.getDiameter = function(){};