mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
parseComplete event now also supplies doclets
The parseComplete event only supplied plugins a list of files that have been looked at before, now it also supplies the parsed doclets
This commit is contained in:
parent
2090b8d2fe
commit
c89c75fd88
@ -91,7 +91,8 @@ exports.Parser.prototype.parse = function(sourceFiles, encoding) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.emit('parseComplete', {
|
this.emit('parseComplete', {
|
||||||
sourcefiles: parsedFiles
|
sourcefiles: parsedFiles,
|
||||||
|
doclets: this._resultBuffer
|
||||||
});
|
});
|
||||||
|
|
||||||
return this._resultBuffer;
|
return this._resultBuffer;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user