mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
- Switched to a new Rhino fork: https://github.com/jsdoc3/rhino (currently reflects mozilla/rhino HEAD + enhancements for JSDoc) - Removed jsdoc/util/global; new Rhino fork provides a `global` alias just like Node.js - Moved most of jsdoc.js into cli.js, and refactored for clarity
23 lines
650 B
JavaScript
23 lines
650 B
JavaScript
global.jsdocPluginsTest.plugin2 = {};
|
|
|
|
exports.handlers = {
|
|
fileBegin: function() {
|
|
global.jsdocPluginsTest.plugin2.fileBegin = true;
|
|
},
|
|
beforeParse: function() {
|
|
global.jsdocPluginsTest.plugin2.beforeParse = true;
|
|
},
|
|
jsdocCommentFound: function() {
|
|
global.jsdocPluginsTest.plugin2.jsdocCommentFound = true;
|
|
},
|
|
symbolFound: function() {
|
|
global.jsdocPluginsTest.plugin2.symbolFound = true;
|
|
},
|
|
newDoclet: function() {
|
|
global.jsdocPluginsTest.plugin2.newDoclet = true;
|
|
},
|
|
fileComplete: function() {
|
|
global.jsdocPluginsTest.plugin2.fileComplete = true;
|
|
}
|
|
};
|