Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/jsdoc-toolkit/app/test/memberof_constructor.js
blob: 80fde735c3ba5bd99c9485a41723c35341630e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @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(){};