-
Notifications
You must be signed in to change notification settings - Fork 3
/
toparam.js
72 lines (66 loc) · 2.16 KB
/
toparam.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* Property-to-param tag. For when initial values of properties may be supplied as parameters.
*
* @author Ernst Haagsman (Solpeo) <ernsthaagsman@gmail.com>
*/
exports.defineTags = function(dictionary){
dictionary.defineTag('toparam', {
// May have a value
onTagged: function(doclet, tag){
if(tag.value)
{
doclet.toparam = tag.value;
}
else
{
if(!doclet.toparam) doclet.toparam = true;
}
}
});
};
exports.handlers = {
beforeParse : function(e) {
e.source = e.source.replace('@toparam',"@default \n @toparam",'g');
},
parseComplete : function(args){
docs = args.doclets;
var i = docs.length;
while (--i >= 0)
{
if(docs[i] && docs[i].toparam)
{
var doclet = docs[i];
var param = {};
// Determine if the parameter should be optional
if (doclet.toparam.length)
{
var regex = /\[([\w\.]*)\]/;
if(regex.test(doclet.toparam))
{
var matches = doclet.toparam.match(regex);
doclet.toparam = matches[1];
param.optional = true;
}
else
{
param.optional = false;
}
}
param.type = doclet.type;
param.description = doclet.description;
param.name = doclet.toparam + doclet.name;
param.defaultvalue = doclet.defaultvalue;
// Param is now ready, let's add it to the constructor
var j = docs.length;
while (--j >= 0)
{
if(docs[j] && docs[j].longname && docs[j].longname == doclet.memberof && docs[j].kind == 'class')
{
if(!docs[j].params) docs[j].params = [];
docs[j].params.push(param);
}
}
}
}
}
};