(parser, {doclet})
| 83 | |
| 84 | // Given an event, get the parent node's doclet. |
| 85 | function getParentDocletFromEvent(parser, {doclet}) { |
| 86 | if (doclet && doclet.meta && doclet.meta.code && doclet.meta.code.node && |
| 87 | doclet.meta.code.node.parent) { |
| 88 | return parser._getDocletById(doclet.meta.code.node.parent.nodeId); |
| 89 | } |
| 90 | |
| 91 | return null; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * For function parameters that have inline documentation, create a function that will merge the |
no test coverage detected
searching dependent graphs…