Update to doctrine-0.7.0

This commit is contained in:
John Firebaugh 2015-10-12 20:28:16 -07:00
parent efd5b4ccb4
commit 39efefb2b7
3 changed files with 5 additions and 9 deletions

View File

@ -36,6 +36,7 @@ var flatteners = {
'member': flattenTypedName,
'module': flattenTypedName,
'namespace': flattenTypedName,
'typedef': flattenTypedName,
'kind': function (result, tag) {
result.kind = tag.kind;
},
@ -98,12 +99,6 @@ var flatteners = {
},
'private': function (result) {
result.access = 'private';
},
'typedef': function (result, tag) {
result.typedef = {
name: tag.description,
type: tag.type
};
}
};

View File

@ -20,7 +20,7 @@
"babylon": "^5.8.23",
"brfs": "^1.4.0",
"concat-stream": "^1.5.0",
"doctrine": "^0.6.4",
"doctrine": "^0.7.0",
"documentation-theme-default": "^1.0.0-alpha2",
"extend": "^3.0.0",
"get-comments": "^1.0.1",

View File

@ -10,12 +10,13 @@
},
{
"title": "typedef",
"description": "MyType",
"description": null,
"lineNumber": 3,
"type": {
"type": "NameExpression",
"name": "Object"
}
},
"name": "MyType"
},
{
"title": "property",